如何禁用用户的表单大小调整?
如何禁用用户的表单大小调整?使用哪个属性?
我尝试了 AutoSize 和 AutoSizeMode。
How do I disable form resizing for users? Which property is used?
I tried AutoSize
and AutoSizeMode
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
使用
FormBorderStyle
属性。使其成为FixedSingle
:Use the
FormBorderStyle
property. Make itFixedSingle
:使用
Form
的FormBorderStyle
属性:Use the
FormBorderStyle
property of yourForm
:更改此属性并在设计时尝试此操作:
更改前的设计器视图:
Change this property and try this at design time:
Designer view before the change:
我总是使用这个:
这样您就可以随时从设计器调整表单的大小,而无需更改代码。
I always use this:
This way you can always resize the form from Designer without changing code.
使用表单的
MaximumSize
和MinimumSize
属性将固定表单大小,并阻止用户调整表单大小,同时保持表单默认FormBorderStyle
。Using the
MaximumSize
andMinimumSize
properties of the form will fix the form size, and prevent the user from resizing the form, while keeping the form defaultFormBorderStyle
.我会设置最大尺寸、最小尺寸并删除窗口的抓手图标。
设置属性(MaximumSize、MinimumSize 和 SizeGripStyle):
I would set the maximum size, minimum size and remove the gripper icon of the window.
Set properties (MaximumSize, MinimumSize, and SizeGripStyle):
将
FormBorderStyle
更改为固定值之一:FixedSingle
、Fixed3D
、FixedDialog
或FixedToolWindow
。FormBorderStyle
属性位于Appearance 类别下。或者检查这个:
Change the
FormBorderStyle
to one of the fixed values:FixedSingle
,Fixed3D
,FixedDialog
orFixedToolWindow
.The
FormBorderStyle
property is under the Appearance category.Or check this: