限制窗体大小
2021-06-26 19:06
标签:for 分享图片 arp tar highlight 分享 obj src fixed 实现代码: 知识运用: 窗体的Width属性 Height属性 用于获取或设置窗体的宽度(高度) 属性值以像素为单位 和FormBorderStyle属性 用于 获取或设置窗体的边框样式 属性值为FormBorderStyle枚举值 实现代码: 限制窗体大小 标签:for 分享图片 arp tar highlight 分享 obj src fixed 原文地址:https://www.cnblogs.com/feiyucha/p/10092416.html private void Form1_Load(object sender, EventArgs e)
{
this.Width = 400;
this.Height = 300;
this.FormBorderStyle = FormBorderStyle.FixedSingle;
}
上一篇:swagger注释API详细说明