我对 xaml wpf 中的样式有疑问。
我有一个适用于所有对象的默认样式。但对于其中一些人,我想设置第二种样式来覆盖一些属性。
现在,如果我给我的第二个样式 ax:key="style2" 并将其设置为样式,我的第一个默认样式不会应用,但默认 WPF 样式是。我不能/不想在我的第一个默认样式中更改任何内容
我该如何解决这个问题?
为确保仍应用您的默认样式,请添加
BasedOn={StaticResource ResourceKey={x:Type ControlType}}
ControlType
默认样式应用到的对象类型在哪里。
这是一个例子:
<Window x:Class="StyleOverrides.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="FontFamily" Value="Comic Sans MS" />
</Style>
<Style x:Key="Specialization"
TargetType="{x:Type TextBlock}"
BasedOn="{StaticResource ResourceKey={x:Type TextBlock}}"
>
<Setter Property="FontStyle" Value="Italic" />
<Setter Property="Foreground" Value="Blue" />
</Style>
</Window.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Viewbox Grid.Row="0" >
<TextBlock>This uses the default style</TextBlock></Viewbox>
<Viewbox Grid.Row="1">
<TextBlock Style="{StaticResource Specialization}">
This is the specialization
</TextBlock>
</Viewbox>
</Grid>
</Window>