1

我想为 a 提供一个简单的默认样式UserControl,但在使用控件时仍然能够扩展或覆盖该样式。下面是一个示例场景,其中包含一个简单的控件UserControl和一个Window包含控件。目的是让 中Button提供的样式Window覆盖 中定义的默认样式UserControl

用户控制

<UserControl x:Class="Sample.TestControl" ... >
    <UserControl.Resources>
        <Style TargetType="{x:Type Button}">
            <Setter Property="Margin" Value="2" />
            <Setter Property="Foreground" Value="Orange" />
        </Style>
        <Style TargetType="{x:Type StackPanel}">
            <Setter Property="Background" Value="Black" />
        </Style>
    </UserControl.Resources>
    <StackPanel>
        <Button Content="Press Me" />
        <Button Content="Touch Me" />
        <Button Content="Tap Me" />
    </StackPanel>
</UserControl>

窗户

<Window x:Class="Sample.MainWindow" ... >
    <Grid>
        <local:TestControl>
            <local:TestControl.Resources>
                <Style TargetType="{x:Type Button}">
                    <Setter Property="Margin" Value="2" />
                    <Setter Property="Foreground" Value="Green" />
                </Style>
            </local:TestControl.Resources>
        </local:TestControl>
    </Grid>
</Window>

问题

上面的代码将导致:

  • 例外:Set property 'System.Windows.ResourceDictionary.DeferrableContent' threw an exception.
  • 内部异常:Item has already been added.

上面的代码试图将两个具有相同键的样式提交到相同的ResourceDictionary,所以显然它不会工作。我猜我将无法为按钮提供默认样式...

4

1 回答 1

0

解决方法不足:覆盖默认值ResourceDictionary

<Window x:Class="Sample.MainWindow" ... >
    <Grid>
        <local:TestControl>
            <local:TestControl.Resources>
                <ResourceDictionary>
                    <Style TargetType="{x:Type Button}">
                        <Setter Property="Margin" Value="2" />
                        <Setter Property="Foreground" Value="Green" />
                    </Style>
                </ResourceDictionary>
            </local:TestControl.Resources>
        </local:TestControl>
    </Grid>
</Window>

通过将自定义Button样式放在 a 中ResouceDictionary,我可以覆盖默认样式。但是,它不仅覆盖了Button样式,而且覆盖了所有资源。因此,StackPanel将不再有黑色背景。(显然,我也可以将其添加到最重要的样式中,但这在更大范围内不实用。)

于 2012-10-13T23:14:29.383 回答