티스토리 뷰
C#에서 win32sdk 사용하기 위해서는 아래 코드와 같다.
HWND 는 C#에서 IntPtr 로 사용하고, HWND 전달할때는 Handle 을 사용하고
char* 는 string 를 쓰면된다.
사용자정의 메시지인 WM_USER 를 전달하기 위해 PostMessage 를 이용하고
WndProc 를 재정의한다.
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 | // System, System.Drawing, System.Windows.Forms 참조추가하기 class Class1 : System.Windows.Forms.Form { static System.Windows.Forms.Form form2; private const int WM_USER = 0x0400; public static void Main() { form2 = new Class1(); form2.Text = "Second Form"; form2.BackColor = System.Drawing.Color.White; form2.Show(); System.Windows.Forms.Application.Run(new Class1()); // 이 코드가 없으면 창이 나왔다가 바로 사라지면서 종료된다. } public Class1() // 생성자 함수 { Text = "Form 상속"; BackColor = System.Drawing.Color.White; } protected override void OnPaint(System.Windows.Forms.PaintEventArgs pea) { System.Drawing.Graphics grfx = pea.Graphics; grfx.DrawString("Helloc, Windows Forms!", Font, System.Drawing.Brushes.Black, 0, 0); } [System.Runtime.InteropServices.DllImport("user32.dll")] public static extern int MessageBox(System.IntPtr hWnd, string lpText, string lpCaption, uint uType); [System.Runtime.InteropServices.DllImport("user32.dll")] public static extern int PostMessage(System.IntPtr hWnd, int Msg, System.IntPtr wParam, System.IntPtr lParam); protected override void OnKeyDown(System.Windows.Forms.KeyEventArgs kea) { // 키 입력 이벤트 MessageBox(Handle, "test", "TEST", 0); if (kea.KeyCode == System.Windows.Forms.Keys.X) Close(); PostMessage(form2.Handle, WM_USER + 1, (System.IntPtr)0, (System.IntPtr)1); } protected override void WndProc(ref Message m) // 사용자 정의 메시지를 처리하기 위해 재정의한다. { base.WndProc(ref m); if(WM_USER + 1 == m.Msg) { form2.Text = "MSG wParam = " + m.WParam.ToString() + " lParam = " + m.LParam.ToString(); } } } | cs |
실행화면>
키보드 입력을 하면 WM_USER(0x400+1) 메시지를 전송해서 아래와 같이 Second Form 의 제목이 바뀐다.