WinForm禁止窗体调整
程序员文章站
2022-03-04 11:50:50
...
在窗体的Designer中的InitializeComponent()方法中添加以下代码:
this.MaximizeBox = false;//禁止最大化
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;//禁止调整窗体大小
参考链接: