欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#实现将窗体固定在显示器的左上角且不能移动的方法

程序员文章站 2024-01-27 21:16:04
本文实例讲述了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#程序设计有所帮助。