//窗体移动API[DllImport("user32.dll")]public static extern bool ReleaseCapture();[DllImport("user32.dll")]public static extern bool SendMessage(IntPtr hwn ...
分类:
移动开发 时间:
2017-05-01 22:16:20
阅读次数:
440
窗体移动 //窗体移动API [DllImport("user32.dll")] public static extern bool ReleaseCapture(); [DllImport("user32.dll")] public static extern bool SendMessage(I ...
分类:
移动开发 时间:
2017-04-25 10:21:35
阅读次数:
200
1. 重写WndProc protected override void WndProc(ref Message m) { const int WM_NCHITTEST = 0x84; const int HTCLIENT = 0x01; const int HTCAPTION = 0x02; if ...
分类:
移动开发 时间:
2017-03-23 15:56:21
阅读次数:
1145
通过标题栏的鼠标事件实现窗体移动,代码如下: ...
分类:
移动开发 时间:
2016-12-25 11:33:16
阅读次数:
202
//窗体移动API,先导入命名空间,在委托MouseDown事件 //移动前准备 [DllImport("user32.dll")] public static extern bool ReleaseCapture(); [DllImport("user32.dll")] public static ...
分类:
移动开发 时间:
2016-12-13 07:46:58
阅读次数:
648
无边框窗体移动://窗体移动API [DllImport("user32.dll")] public static extern bool ReleaseCapture(); [DllImport("user32.dll")] public static extern bool SendMessag ...
分类:
移动开发 时间:
2016-12-11 23:14:02
阅读次数:
270
窗体移动API:需要引用命名空间 窗体阴影API:在构造函数中加一句话 1.colordialog:颜色对话框 改变对话框的字体颜色 2.fontdialog:字体对话框 showapply:是否显示应用按钮showcolor:是否显示颜色按钮 要设置字体颜色,在if中再加上: 3.folderbr ...
分类:
移动开发 时间:
2016-12-11 21:02:41
阅读次数:
275