在我的项目中,文本框有一个自定义样式。它被定义为:
<Style TargetType="TextBox"/>
所以它默认应用于所有文本框子控件。
我需要创建另一种基于默认样式的样式。但是如何在 BasedOn 属性中指定我的新样式应该使用默认样式?
使用您想要扩展的控件类型
BasedOn="{StaticResource {x:Type TextBox}}"
完整示例:
<Style x:Key="NamedStyle" TargetType="TextBox" BasedOn="{StaticResource {x:Type TextBox}}">
<Setter property="Opacity" value="0.5" />
</Style>
@Aphelion 有正确的答案。我想补充一下在这个ResourceDictionary
问题中定义项目的顺序。
如果您覆盖滑块的默认样式,并且您希望在此基础上创建另一个滑块样式,则必须在覆盖样式之后声明“基于”滑块。
例如,如果您这样做:
<Style x:Key="BlueSlider" TargetType="{x:Type Slider}" BasedOn="{StaticResource {x:Type Slider}}">
<Setter Property="Background" Value="Blue"/>
</Style>
<Style TargetType="{x:Type Slider}">
<Setter Property="Foreground" Value="Yellow"/>
</Style>
BlueSlider
将具有默认(白色)前景的蓝色背景。
但如果你这样做:
<Style TargetType="{x:Type Slider}">
<Setter Property="Foreground" Value="Yellow"/>
</Style>
<Style x:Key="BlueSlider" TargetType="{x:Type Slider}" BasedOn="{StaticResource {x:Type Slider}}">
<Setter Property="Background" Value="Blue"/>
</Style>
BlueSlider
将有蓝色背景和黄色前景。