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

本文关键字:设置 默认 样式 取消 WPF | 更新日期: 2023-09-27 18:26:32

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

class MyControl : AnyParentClass { ...

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

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

也许是这样的事情?

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