1

How can I get rid of the grey dropdown area to the right of the text in the toolbar item below?

alt text

Here is the code which produces it:

ToolBar tb = new ToolBar();
tb.Background = new SolidColorBrush(Colors.Transparent);
Button button = new Button();
button.Content = "test";
button.Click += new RoutedEventHandler(button_Click);
tb.Items.Add(button);
value.ToolBars.Add(tb);
4

2 回答 2

4
<ToolBar Height="120">
        <ToolBar.Style>
            <Style TargetType="ToolBar">
                <!-- Not Dropdown Button -->
                <Setter Property="ToolBarTray.IsLocked" Value="True"/>
                <!-- Not Overflow Button -->
                <Setter Property="OverflowMode" Value="Never"/>
                <Setter Property="Template">
                    <Setter.Value>
                        <ControlTemplate TargetType="{x:Type ToolBar}">
                            <ToolBarPanel IsItemsHost="True" Background="WhiteSmoke"/>
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </Style>
        </ToolBar.Style>
        <!-- Content -->
        ........
        <!-- End Content -->
</ToolBar>
于 2019-07-29T00:46:58.733 回答
0

ToolBar 类中没有允许您执行此操作的属性。但是您始终可以覆盖 ToolBar 的样式。获取主题的默认样式。通常那个拇指部分被称为“OverflowGrid”。只需将其删除或隐藏即可。

希望这能回答你的问题。但我想知道你为什么要删除它?你确定你需要工具栏控制吗?也许具有适当颜色的原始 ItemsControl 对您有用?

于 2009-09-23T16:34:15.050 回答