如何为wpf组合框的SelectedItem创建一些简单的样式?

时间:2017-09-07 19:10:29

标签: wpf combobox

我有一个非常简单的WPF组合框,如下所示:

<ComboBox  Width="192" Height="30"  Style="{StaticResource StyleCombobox1}" />

我在App.xaml中定义了这个组合框的样式,如下所示:

<Style x:Key="StyleCombobox1">
        <Setter Property="Control.FontFamily" Value="{Binding Source}" />
        <Setter Property="Control.FontSize" Value="16" />
        <Setter Property="Control.Background" Value="WhiteSmoke" />
        <Setter Property="Control.Foreground" Value="Green" />
    </Style>

如何为Combobox中显示的当前SelectedItem设置一些字体样式,背景等?

0 个答案:

没有答案