我为我的用户控件创建了一个 FocusVisualStyle 并成功实现了覆盖。我的问题是我希望使用父级的一些属性,但 TemplateBinding 似乎不起作用。
控件的简化版本定义如下:
<Style TargetType="{x:Type local:Thought}">
<Setter Property="FocusVisualStyle" Value="{StaticResource ThoughtFocusStyle}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:Thought}" >
<Border BorderThickness="{TemplateBinding BorderThickness}"
BorderBrush="{StaticResource ThoughtBorderNormalBrush}">
<!-- other controls -->
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
我的自定义 FocusVisualStyle 定义如下:
<Style x:Key="ThoughtFocusStyle" TargetType="{x:Type Control}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Control}">
<Border BorderThickness="{TemplateBinding BorderThickness}"
BorderBrush="{StaticResource ThoughtBorderFocusBrush}"/>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
如果我在 ThoughtFocusStyle 中硬编码 BorderThickness,它会按预期工作(Tab 进入控件),但使用 TemplateBinding 不会。我玩过RelativeSource,但似乎无法正确使用语法(对WPF来说仍然很新)。