WindowsForm移动一个没有标题栏的窗口的方法
程序员文章站
2022-08-30 17:50:18
在winform程序中,要移动没有标题栏的窗口,基本的实现思路是监听需要拖动窗口内的控件的鼠标事件,然后将鼠标位置发送给窗口进行相应的位移就可以了。通过借用windows api也可以很容易实现这一点...
在winform程序中,要移动没有标题栏的窗口,基本的实现思路是监听需要拖动窗口内的控件的鼠标事件,然后将鼠标位置发送给窗口进行相应的位移就可以了。通过借用windows api也可以很容易实现这一点,比如像下面这样。
public class win32api { public const int wm_syscommand = 0x112; public const int sc_dragmove = 0xf012; [dllimport("user32.dll", entrypoint = "releasecapture")] public extern static void releasecapture(); // 鼠标捕获 [dllimport("user32.dll", entrypoint = "sendmessage")] public extern static void sendmessage(intptr hwnd, int wmsg, int wparam, int lparam); // 将消息发送给指定的窗口 } private void pnlheader_mousedown(object sender, mouseeventargs e) { win32api.releasecapture(); win32api.sendmessage(this.handle, win32api.wm_syscommand, win32api.sc_dragmove, 0); }
当然,你还可以向这样向窗口发送消息,来实现拖动自定义标题栏移动窗口
public const int wm_nclbuttondown = 0x00a1; public const int htcaption = 2; private void pnlheader_mousedown(object sender, mouseeventargs e) { if (e.button == mousebuttons.left) { // 释放控件已捕获的鼠标 pnlheader.capture = false; // 创建并发送wm_nclbuttondown消息 message msg = message.create(this.handle, win32api.wm_nclbuttondown, new intptr(win32api.htcaption), intptr.zero); this.defwndproc(ref msg); } }
以上就是windowsform移动一个没有标题栏的窗口的方法的详细内容,更多关于windowsform 移动窗口的资料请关注其它相关文章!