一、窗体居中
//窗体居中 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
二、去掉最小化、最大化
//去掉最小化,去掉最大化 MinimizeBox = false; MaximizeBox = false;
三、设置窗体不可拉伸
设置窗体的FormBorderStyle属性,将默认的”Sizable”改为” FixedSingle”或” Fixed3D”即可。
一、窗体居中
//窗体居中 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
二、去掉最小化、最大化
//去掉最小化,去掉最大化 MinimizeBox = false; MaximizeBox = false;
三、设置窗体不可拉伸
设置窗体的FormBorderStyle属性,将默认的”Sizable”改为” FixedSingle”或” Fixed3D”即可。