在WPF中,我有一个类似下面的控件样式,
<Style TargetType="local:CustomControl">
<Setter Property="Background" Value="Transparent" />
<Setter Property="BorderBrush" Value="Gray" />
<Setter Property="BorderThickness" Value="0,0,0,1" />
<Setter Property="Padding" Value="3,0,3,0" />
<Setter Property="IsTabStop" Value="False" />
<Setter Property="VerticalContentAlignment" Value="Center" />
</Style>
现在我需要覆盖其他地方的海关控制边界,如下面,
<Style TargetType="local:CustomControl" BasedOn="{StaticResource {x:Type local:CustomControl}}">
<Setter Property="BorderThickness" Value="1" />
</Style>
我的问题是,当我使用上面的代码时,它会覆盖第一个编写的代码。是我的代码是正确的。
注意:基本样式仅使用目标类型编写。我需要在不影响基本代码的情况下,在其他地方覆盖控制边界。
有可能吗?请帮我解决这个问题。
提前谢谢。
如果声明了一个Style
而没有x:Key
,它将覆盖该控件的默认样式。
<Style TargetType="local:CustomControl">
因此,上面的代码将影响整个应用程序(或范围内)中所有CustomControl
元素。
如果您不想覆盖基本样式,可以给Style
一个x:Key
,如下所示:
<Style TargetType="local:CustomControl" x:Key="MyAwesomeStyle">
创建控件时,必须引用Style
。这里有一个例子:
<local:CustomControl Style="{DynamicResource MyAwesomeStyle}" ... />
我无意中看到了一些例子,这些例子对解决上述问题很有用。在您的示例中,使用了自己的自定义控件,在我的示例中使用了按钮。
<Grid>
<Button Style="{StaticResource AddButtonStyle}" Tag="Add" Click="addClick" />
</Grid>
AddButtonStyle的代码:
<Style x:Key="AddButtonStyle" TargetType="Button" BasedOn="{StaticResource AppBarButtonStyle}">
<Setter Property="Content" Value="✅"/>
</Style>
AddButtonStyle基于AppBarButtonStyle。下面的代码。
<Style x:Key="AppBarButtonStyle" TargetType="Button">
<Setter Property="MinWidth" Value="40" />
<Setter Property="Width" Value="100" />
<Setter Property="Height" Value="88" />
<Setter Property="HorizontalAlignment" Value="Right" />
<Setter Property="Foreground" Value="White" />
<Setter Property="FontFamily" Value="Segoe UI Symbol" />
<Setter Property="FontSize" Value="18" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">. . .
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
在此示例基础上,必须使用x:Key声明Style,并且不应在继承的样式中为Content(在您的示例中为BorderThickness)属性设置任何值。