Windows环境下的窗体,要想最大化,有多种办法。比如最大化按钮,比如拉伸窗口大小,或者是使用系统菜单中的最大化。系统菜单即在一个窗口中按(Alt+空格)出现在窗口左上角的那个菜单。

那么有没有办法将一个窗体中所有的最大化功能全部去掉呢?需求肯定是有的,就看我们怎么来实现了。

1、处理系统菜单中的最大化功能

首先在窗体类中声明:

public class Form1 : System.Windows.Forms.Form

{

 [DllImport("user32.dll",EntryPoint="GetSystemMenu")] //导入API函数

 extern static System.IntPtr GetSystemMenu(System.IntPtr hWnd , System.IntPtr bRevert);

 [DllImport("user32.dll",EntryPoint="RemoveMenu")]

 extern static int RemoveMenu (IntPtr hMenu, int nPos, int flags);

 static int MF_BYPOSITION = 0x400;

 static int MF_REMOVE = 0x1000;

 public Form1()//构造函数

 {

  InitializeComponent();

  RemoveMenu(GetSystemMenu(Handle,IntPtr.Zero),0,MF_BYPOSITION|MF_REMOVE);   

 }

}

2、设置窗体不能通过伸拉改变大小

//改变窗体风格,使之不能用鼠标拖拽改变大小

this.FormBorderStyle = FormBorderStyle.FixedSingle;

3、设置窗口的最大化按钮不可用

this.MaximizeBox = false;

03-14 13:01