<Style TargetType="{AnyParentClass}">
<Setter Propery="Foreground" Value="#FF000000"/>
</Style>
...
class MyControl : AnyParentClass { ...
有没有办法让我的控件从视觉父母那里继承它Foregrond?
答案 0 :(得分:1)
这样的事可能吗?
<MyControl
Foreground="{Binding RelativeSource={RelativeSource AncestorType=UserControl},
Path=Foreground}" />