C# Winform无边框窗口拖动

Windows 的 API

代码如下:

[DllImport("user32.dll")]
public static extern bool ReleaseCapture();

[DllImport("user32.dll")]
public static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam);

private void frmMain_MouseDown(object sender, MouseEventArgs e)
{
ReleaseCapture();
SendMessage(Handle, 0x0112, 0xF012, 0);
}

posted @ 2019-04-25 11:22  Elcser  阅读(304)  评论(0编辑  收藏  举报