私はWinFormsプロジェクトを持っています。ウィンドウの上部にパネルがあります。ユーザーがウィンドウをクリックしてからドラッグしたときに、そのパネルがウィンドウを移動できるようにしたい。
これどうやってするの?
次のデクレレーションをクラスに追加します。
public const int WM_NCLBUTTONDOWN = 0xA1;
public const int HTCAPTION = 0x2;
[DllImport("User32.dll")]
public static extern bool ReleaseCapture();
[DllImport("User32.dll")]
public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
MouseDown
これをパネルのイベントに入れてください:
private void panel1_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
ReleaseCapture();
SendMessage(Handle, WM_NCLBUTTONDOWN, HTCAPTION, 0);
}
}