无法隐藏工具栏夹点
我正在尝试在 WPF 应用程序中创建一个工具栏。 我不希望出现条带(如下图所示),我只想将所有物品放置在一般区域中。
我尝试将 ToolBar.OverflowMode 设置为 Never ,但这没有帮助。
I am trying to create a ToolBar in my WPF application.
I don't want the strip (as shown in the bellow figure) to show up, I just want all the items to be placed in the general area.
I tried setting the ToolBar.OverflowMode to Never ut it doesn't help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据工具栏的控制模板,没有任何东西可以删除该抓握。您可以设置
ToolBarTray.IsLocked="True"
但这只会从左侧删除拖动手柄。至于握点,您必须编辑默认的工具栏模板(您可以在 Expression Blend 目录中找到一个模板,例如C:\Program Files\Microsoft Expression\Blend 3\SystemThemes\Wpf\
),然后删除来自它的OverflowGrid
...According to Toolbar's control template, there is nothing that can remove that grip. You can set
ToolBarTray.IsLocked="True"
but this will remove only drag handle from the left hand side. As for the grip you will have to edit default ToolBar template (you can find one in Expression Blend directory, e.g.C:\Program Files\Microsoft Expression\Blend 3\SystemThemes\Wpf\
), and removeOverflowGrid
from it...