停止突出显示所选项目WPF ComboBox

时间:2010-09-30 09:24:28

标签: c# .net wpf combobox wpf-controls

我目前正在开发一个WPF用户界面,我的窗口上有一个组合框。 所以我希望用户能够从这个组合框中选择一个项目,但是当它被选中时 我不希望它以默认的蓝色突出显示。

我认为在XAML中有一些方法可以阻止它,但到目前为止我还没有找到解决方案。

感谢。

P.S。我没有访问Expression Blend的权限,所以如果有人建议解决方案可以在XAML中

编辑:只是为了让我更清楚我选择了我的意思是一旦你选择了一个值并且SelectionChanged事件被触发并且项目显示在组合框中并且组合框突出显示如下: alt text

2 个答案:

答案 0 :(得分:7)

您需要通过样式设置选择的外观。

    <Window.Resources>
    <Style TargetType="{x:Type ComboBoxItem}">
        <Setter Property="Control.Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type ComboBoxItem}">
                    <Border Background="{TemplateBinding Background}">
                        <Grid>
                            <Grid.RowDefinitions>
                                <RowDefinition />
                                <RowDefinition />
                            </Grid.RowDefinitions>
                            <Border Margin="2" Grid.Row="0" Background="Azure" />
                            <ContentPresenter />
                        </Grid>
                    </Border>
                    <ControlTemplate.Triggers>
                        <Trigger Property="IsMouseOver" Value="True">
                            <Setter Property="Background" Value="Green" />
                        </Trigger>
                    </ControlTemplate.Triggers>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</Window.Resources>

此样式将自动应用于窗口中的任何组合框:

<StackPanel>
    <ComboBox>
        <ComboBoxItem>111</ComboBoxItem>
        <ComboBoxItem>222</ComboBoxItem>
        <ComboBoxItem>333</ComboBoxItem>
        <ComboBoxItem>444</ComboBoxItem>
        <ComboBoxItem>555</ComboBoxItem>
    </ComboBox>
</StackPanel>

您将看到如下:

http://i.stack.imgur.com/b4pDo.png

UPD:要删除所选项目的突出显示,您需要修改实际用于这些目的的系统画笔。只需添加两个额外的样式:

    <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent"/>
    <SolidColorBrush x:Key="{x:Static SystemColors.HighlightTextBrushKey}" Color="Black"/>  

答案 1 :(得分:-1)

您是否尝试过设置ComboBox.Background属性?