0

我创建了一个自定义控件 ColorToggleButton,它继承了 ToggleButton。在相应的 .xaml 文件中,ColorToggleButton 的一个特定于 TargetType 和 BasedOn ToggleButton。

<Style TargetType="ctl:ColorToggleButton" BasedOn="{StaticResource {x:Type ToggleButton}}">

这很好用,但是如果我使用 x:Key 在窗口中应用另一种样式,如

<Style x:Key="SameContent"><Setter Property="Content" Value="Same Content" /></Style>
<ctl:ColorToggleButton Style={StaticResource SameContent} />

旧样式似乎完全消失了,取而代之的是新样式。我可以通过使用 BasedOn 来规避这个问题

<Style x:Key="SameContent" BasedOn="{StaticResource {x:Type ctl:ColorToggleButton}}"><Setter Property="Content" Value="Same Content" /></Style>
<ctl:ColorToggleButton Style={StaticResource MyKey} />

但这对我来说似乎违反直觉,因为如果我将样式应用于普通的 ToggleButton 或其他一些默认控件,我不会使用 BasedOn 属性。这是实施您自己的控制的标准方式吗?我做错了什么可怕的事情吗?

编辑:ColorToggleButton 的静态构造函数如下:

static ColorToggleButton()
{
    DefaultStyleKeyProperty.OverrideMetadata(typeof(ColorToggleButton), new FrameworkPropertyMetadata(typeof(ColorToggleButton)));
}
4

1 回答 1

1

在您的控件中,您是否提供了具有DefaultStyleKeyProperty覆盖的静态构造函数?

static ColorToggleButton()
{
            DefaultStyleKeyProperty.OverrideMetadata(typeof(ColorToggleButton), new FrameworkPropertyMetadata(typeof(ColorToggleButton)));
}
于 2012-12-03T17:29:12.670 回答