winform 禁用“最大化”按钮

private void Form1_Load(object sender, EventArgs e)
{
   this.MaximizeBox = false;                                     //禁用"最大化"按钮
   this.FormBorderStyle = FormBorderStyle.FixedDialog;           //设置窗体边框样式为对话框样式
}

 

    原文作者:k7Cx7e
    原文地址: https://blog.csdn.net/gdali/article/details/81907696
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞