诊断
它不起作用的原因是您分配了
ReadOnlyStyle
内部的属性值
SelectedStyle
选定样式
是一种
StyleSelector
哪一个是
enum
,并且您没有显式为此属性指定默认值,它的默认值为
default(StyleSelector)
由框架分配,该框架恰好是
StyleSelector.Style1
文本框样式
残余
null
因此,你得到你得到的
Label
使用默认样式)。
解决方案
为了解决这个问题,您应该指定
. 但是,由于样式保存在资源字典中,因此无法在构造函数中执行此操作。分配初始值的一个好方法是:
protected override void OnInitialized(EventArgs e)
{
base.OnInitialized(e);
var style = (Style)userControl1.FindResource("SampleStyle-Font1");
SetValue(ReadOnlyStylePropertyKey, style);
}
更好的解决方案
WPF
public partial class UserControl1 : UserControl
{
public enum StyleSelector
{
Style1,
Style2,
Style3
}
public static DependencyProperty SelectedStyleProperty =
DependencyProperty.Register("SelectedStyle", typeof(StyleSelector), typeof(UserControl1));
public UserControl1()
{
InitializeComponent();
}
public StyleSelector SelectedStyle
{
get => (StyleSelector)GetValue(SelectedStyleProperty);
set => SetValue(SelectedStyleProperty, value);
}
}
然后修改您的temlpate:
<ControlTemplate>
<Button Command="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local:UserControl1}}, Path=Command}">
<StackPanel>
<Label x:Name="PART_Label" Content="{Binding Path=Content, RelativeSource={x:Static RelativeSource.TemplatedParent}}" />
</StackPanel>
</Button>
<ControlTemplate.Triggers>
<Trigger Property="local:UserControl1.SelectedStyle" Value="Style1">
<Setter TargetName="PART_Label" Property="Style" Value="{StaticResource SampleStyle-Font1}" />
</Trigger>
<Trigger Property="local:UserControl1.SelectedStyle" Value="Style2">
<Setter TargetName="PART_Label" Property="Style" Value="{StaticResource SampleStyle-Font2}" />
</Trigger>
<Trigger Property="local:UserControl1.SelectedStyle" Value="Style3">
<Setter TargetName="PART_Label" Property="Style" Value="{StaticResource SampleStyle-Font3}" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
-
这个
标签
需要有
x:Name
因此,可以在中引用它
Setter.TargetName
-
Trigger.Property
值需要完全限定,因为
ControlTemplate
没有
TargetType
设置