0

可能重复:
如何在 WPF 中应用多种样式

<Window.Resources>   
    <Style TargetType="Button" x:Key="style_1">
        <Setter Property="Foreground" Value="Green" />
    </Style>
    <Style TargetType="Button" x:Key="style_2">
        <Setter Property="Background" Value="Blue" />
    </Style>    
</Window.Resources>


    <Button x:Name="btn_1" Content="Button" HorizontalAlignment="Left" Height="40" Margin="153,95,0,0" VerticalAlignment="Top" Width="89" Style="{StaticResource style_1}" Click="Button_Click" />
    <Button x:Name="btn_2" Content="Button" Height="40" Margin="281,95,262,0" VerticalAlignment="Top" Style="{StaticResource style_2}"/>

现在我想将 style_1 和 style_2 应用到btn_1我应该怎么做。

4

1 回答 1

0

不能将两种样式应用于 XAML 中的单个控件。

你可以做的是让 style_2 通过指定从 style_1 继承

<Style TargetType="Button" x:Key="style_2" BasedOn="{StaticResource style_1}"> 
    <Setter Property="Background" Value="Blue" />
</Style>

然后只使用 style_2。

于 2012-07-31T06:19:59.480 回答