当前位置:主页 > 软件编程 > .NET代码 >

C# Winform 让整个窗口都可以拖动

时间:2021-10-24 10:33:22 | 栏目:.NET代码 | 点击:

今天在网上查一些资料的时候, 无意中发现另一种办法, 非常方便, 调用系统的 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(this.Handle, 0x0112, 0xF012, 0);
}

您可能感兴趣的文章:

相关文章