如何在WPF中取消设置默认样式的setter?

时间:2014-10-15 11:33:38

标签: c# wpf

<Style TargetType="{AnyParentClass}">
   <Setter Propery="Foreground" Value="#FF000000"/>
</Style>

...

class MyControl : AnyParentClass { ...

有没有办法让我的控件从视觉父母那里继承它Foregrond?

1 个答案:

答案 0 :(得分:1)

这样的事可能吗?

<MyControl
Foreground="{Binding RelativeSource={RelativeSource AncestorType=UserControl},
Path=Foreground}" />