1 protected override void WndProc(ref Message m) 2 { 3 base.WndProc (ref m); 4 if(m.Msg == 0x84) //不让拖动标题栏 5 { 6 if ((IntPtr)2 == m.Result) 7 m.Result = (IntPtr)1; 8 } 9 10 }
2022-09-04 13:12:25
1 protected override void WndProc(ref Message m) 2 { 3 base.WndProc (ref m); 4 if(m.Msg == 0x84) //不让拖动标题栏 5 { 6 if ((IntPtr)2 == m.Result) 7 m.Result = (IntPtr)1; 8 } 9 10 }
下一篇:初探C++内存泄漏学习笔记