[Winform]프레임 없이 이동
2011. 11. 9. 15:25ㆍC#/WinForm
반응형
[DllImportAttribute("user32.dll")]
public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
[DllImportAttribute("user32.dll")]
public static extern bool ReleaseCapture();
public const int HT_CAPTION = 0x02;
public const int WM_NCLBUTTONDOWN = 0xA1;
protected override void OnMouseDown(System.Windows.Input.MouseButtonEventArgs e){
ReleaseCapture();
SendMessage(new System.Windows.Interop.WindowInteropHelper(this).Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
}
반응형
'C# > WinForm' 카테고리의 다른 글
[WinForm 11.18] 쓰레드에 파라메터 값 넣기 (0) | 2011.11.18 |
---|---|
[WinForm] 크로스 쓰레딩을 예방 (0) | 2011.11.11 |
[WinForm] 맨마지막 라인으로 이동하기 (0) | 2011.10.21 |
[WinForm] 엑셀 지우기 현재 창만 (0) | 2011.10.13 |
[WinForm] 엑셀관련 (0) | 2011.09.30 |