将 ToolStripSplitButton.DropDownButtonWidth 设置为 0
我想在我的 StatusStrip
中仅使用 ToolStripSplitButton
作为按钮(无下拉菜单)。
因此,我不想显示小箭头,但我不能这样做。
尝试通过将 ToolStripSplitButton.DropDownButtonWidth
设置为 0 来实现此目的,它在 Windows 7 中成功运行,但在 Windows XP 中失败。
如何去掉小箭头?
I want to use ToolStripSplitButton
as a button only (no drop down menu) in my StatusStrip
.
For this reason i want to not display the little arrow, but i can't do this.
Tried do this with setting ToolStripSplitButton.DropDownButtonWidth
to 0, and it works successfull in windows 7 but not in windows xp.
how to get rid of the little arrow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 ToolStripDropDownButton 而不是 ToolStripSplitButton。 ToolStripDropDownButton 有一个属性 ShowDropDownArrow,它允许您隐藏下拉箭头。
Use the ToolStripDropDownButton instead of the ToolStripSplitButton. The ToolStripDropDownButton has a property ShowDropDownArrow which will allow you to hide the drop down arrow.