c#

位置:IT落伍者 >> c# >> 浏览文章

c#窗体事件


发布日期:2018年04月18日
 
c#窗体事件

从网上看到了一个窗体拖动事件超级简洁至少现在这个阶段我是看起来有困难的有兴趣的哥们们可以讨论下using Systemusing SystemCollectionsGenericusing SystemComponentModel

using SystemDatausing SystemDrawingusing SystemTextusing SystemWindowsFormsnamespace WindowsApplication{ public partial class Form Form

{ private const int WM_NCHITTEST = x//这几行真够晕的貌似调用了基本函数饿

private const int HTCLIENT = x private const int HTCAPTION = x public Form()

{ InitializeComponent() } protected override void WndProc(ref Message m)

{ switch (mMsg)

{ case WM_NCHITTEST baseWndProc(ref m)

if ((int)mResult == HTCLIENT) mResult = (IntPtr)HTCAPTION return break }

baseWndProc(ref m) } }}

我试过了可以运行就是貌似最后那个break有点问题看不懂……嘿嘿 还得继续努力啊!

上一篇:C# HttpWebRequest提交数据方式浅析

下一篇:.NET的winform中listview的绑定