Winform 如何防止双击标题栏、移动窗体
1个回答
展开全部
protected override void WndProc(ref Message m){//拦截双击标题栏、移动窗体的系统消息
if (m.Msg != 0xA3 && m.Msg != 0x0003 && m.WParam != (IntPtr)0xF012){base.WndProc(ref m);}} 其中m.Msg = 0xA3 -> 双击标题栏消息m.Msg = 0x0003 && m.WParam = (IntPtr)0xF012 -> 移动窗体消息
if (m.Msg != 0xA3 && m.Msg != 0x0003 && m.WParam != (IntPtr)0xF012){base.WndProc(ref m);}} 其中m.Msg = 0xA3 -> 双击标题栏消息m.Msg = 0x0003 && m.WParam = (IntPtr)0xF012 -> 移动窗体消息
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询