C#中Form的使用

来源:互联网 发布:sql server 触发器 编辑:程序博客网 时间:2024/06/07 01:09

1、禁止调整大小

this.FormBorderStyle = FormBorderStyle.FixedSingle;

2、窗口居中

在Form_Load中添加代码this.StartPosition = FormStartPosition.CenterScreen无效
修改属性才OK
这里写图片描述

3、禁用最大化

this.MaximizeBox = false;
原创粉丝点击