禁止改变窗体大小

Posted on 2018-12-10 23:19  努力成长静待花开  阅读(164)  评论(0)    收藏  举报

实现效果:

  

知识运用:

  将窗体的FormBorderStyle属性设置为FormBorderStyle.FixedDialog枚举值实现

实现代码:

  

        private void button1_Click(object sender, EventArgs e)
        {
            this.FormBorderStyle = FormBorderStyle.FixedDialog;
        }