如何删除“调整三角形大小”来自 VB.NET 中的 StatusStrip

发布于 2024-10-18 01:17:21 字数 128 浏览 2 评论 0原文

我有一个表单,其 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最冷一天 2024-10-25 01:17:21

在设计器中将 SizeGripStyle 设置为隐藏
或以编程方式使用:

yourForm.SizeGripStyle = Windows.Forms.SizeGripStyle.Hide

编辑:也许与提到的相同 此处

Set the SizeGripStyle to Hide in the designer
or programatically with:

yourForm.SizeGripStyle = Windows.Forms.SizeGripStyle.Hide

Edit: Maybe it's the same as mentioned here

内心荒芜 2024-10-25 01:17:21

根据 Stefanos 的评论,执行以下操作:

statusStripObject.SizingGrip = False

From Stefanos's comment, do this:

statusStripObject.SizingGrip = False
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文