2020
10-08
10-08
WindowsForm移动一个没有标题栏的窗口的方法
在WinForm程序中,要移动没有标题栏的窗口,基本的实现思路是监听需要拖动窗口内的控件的鼠标事件,然后将鼠标位置发送给窗口进行相应的位移就可以了。通过借用WindowsAPI也可以很容易实现这一点,比如像下面这样。publicclassWin32Api{publicconstintWM_SYSCOMMAND=0x112;publicconstintSC_DRAGMOVE=0xF012;[DllImport("user32.Dll",EntryPoint="ReleaseCapture")]publicexternstaticvoidReleaseCapt...
继续阅读 >