C# Winform 让整个窗口都可以拖动
程序员文章站
2023-11-30 08:04:52
今天在网上查一些资料的时候, 无意中发现另一种办法, 非常方便, 调用系统的 api 来实现的, 效果也很好. 赶紧收藏了~ 复制代码 代码如下: [dllimport("...
今天在网上查一些资料的时候, 无意中发现另一种办法, 非常方便, 调用系统的 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);
}
复制代码 代码如下:
[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);
}
上一篇: iOS 10自定义相机功能