C#实现将窗体固定在显示器的左上角且不能移动的方法
程序员文章站
2023-11-25 15:55:34
本文实例讲述了c#实现将窗体固定在显示器的左上角且不能移动的方法。分享给大家供大家参考。具体实现方法如下:
using system;
using system...
本文实例讲述了c#实现将窗体固定在显示器的左上角且不能移动的方法。分享给大家供大家参考。具体实现方法如下:
using system; using system.collections.generic; using system.componentmodel; using system.data; using system.drawing; using system.linq; using system.text; using system.windows.forms; using system.io; using system.runtime.interopservices; namespace app { public partial class form4 : form { public form4() { initializecomponent(); this.startposition = formstartposition.manual; this.location = new point(0, 0); } protected override void wndproc(ref message m) { base.wndproc(ref m); if (m.msg == 0x84 && m.result == (intptr)2) //不让拖动标题栏 { m.result = (intptr)1; } if (m.msg == 0xa3) //双击标题栏无反应 { m.wparam = system.intptr.zero; } } } }
希望本文所述对大家的c#程序设计有所帮助。
下一篇: twig模板常用语句实例小结