■ Control 클래스의 WndProc 메소드를 사용해 COPY/PASTE/CUT을 방지하는 방법을 보여준다.
▶ CustomTextBox.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
using System.Windows.Forms; namespace TestProject { /// <summary> /// 커스텀 텍스트 박스 /// </summary> public class CustomTextBox : TextBox { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// WM_PASTE /// </summary> private const int WM_PASTE = 0x0302; /// <summary> /// WM_COPY /// </summary> private const int WM_COPY = 0x0301; /// <summary> /// WM_CUT /// </summary> private const int WM_CUT = 0x0300; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static #region 윈도우 프로시저 처리하기 - WndProc(message) /// <summary> /// 윈도우 프로시저 처리하기 /// </summary> /// <param name="message">메시지</param> protected override void WndProc(ref Message message) { if(message.Msg == WM_PASTE || message.Msg == WM_COPY || message.Msg == WM_CUT) { } else { base.WndProc(ref message); } } #endregion } } |