这个设置代码必须添加到*.designer.cs中,就是自动隐藏的那部分:
#region Windows Form Designer generated code
一般窗体设置的代码会生成到最后面,在所有的控件设置之后,系统自动生成的注释很好找,直接找Form类名即可
找到后,添加两行代码:
1 this.MaximizeBox = false;//使最大化窗口失效 2 //下一句用来禁止对窗口大小进行拖拽 3 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
时间: 2024-11-10 01:39:44