반응형
public partial class Form1 : Form
{
[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 Form1()
{
InitializeComponent();
}
private void Form1_MouseDown(object sender, MouseEventArgs e)
{
if(e.Button == MouseButtons.Left)
{
ReleaseCapture();
SendMessage(this.Handle, 0xA1, 2, 0);
}
}
}
반응형
'C# > 컨트롤' 카테고리의 다른 글
[Form] 폼의 시스템 메뉴에 임의의 메뉴 추가하는법 (0) | 2012.01.10 |
---|---|
[Form] 서브폼을 활성화하지 않고 표시하기 (0) | 2012.01.10 |
[Radio] 라디오 버튼 포커스 (0) | 2012.01.10 |
[Form] WinForm 시작과 종료 이벤트 (0) | 2012.01.10 |
[C#] [Textbox] 항상 위치 아래로 (0) | 2012.01.09 |
댓글