如何删除“调整三角形大小”来自 VB.NET 中的 StatusStrip
我有一个表单,其 StatusStrip 组件停靠在底部。表单具有固定宽度且不可调整大小。然而,StatusStrip 的右侧有一个小“调整大小三角形”(6 个小点)。
这给人的印象是窗口的大小是可以调整的。我怎样才能删除它?
I have a Form with a StatusStrip component docked at the bottom. The form has fixed width and is not resizable. However the StatusStrip has a little 'resize triangle' at the right (6 little dots).
This gives the impression that the window is resizable. How can I remove it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在设计器中将 SizeGripStyle 设置为隐藏
或以编程方式使用:
编辑:也许与提到的相同 此处
Set the SizeGripStyle to Hide in the designer
or programatically with:
Edit: Maybe it's the same as mentioned here
根据 Stefanos 的评论,执行以下操作:
From Stefanos's comment, do this: