WinForm禁止窗體調整

Tiger_shl發表於2018-11-12

在窗體的Designer中的InitializeComponent()方法中新增以下程式碼:

this.MaximizeBox = false;//禁止最大化
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;//禁止調整窗體大小

 參考連結:

https://www.cnblogs.com/chutianshu1981/p/3462929.html

相關文章