如何在WPF窗口中设置样式.资源



我想在Window.Resources中创建多个样式。下面是我尝试过的代码,但不起作用:

<Window.Resources>
    <Style x:Key="StyleOne" TargetType="{x:Type Control}">
        <Setter Property="Control.Background" Value="Blue"></Setter>
        <Setter Property="Control.Height" Value="20"></Setter>
    </Style>
    <Style x:Key="StyleTwo" BasedOn="{StaticResource StyleOne}">
        <Setter Property="Control.Background" Value="Red"></Setter>
        <Setter Property="Control.Height" Value="20"></Setter>
    </Style>
</Window.Resources>
<Button Style="{StaticResource StyleOne}"></Button>
<Button Style="{StaticResource StyleTwo}"></Button>

它抛出一个错误:

属性"Content"设置了多次。

此错误与样式无关,窗口只能包含一个子窗口(设置Content),使用一些可以包含多个子窗口的容器。例如CCD_ 2或CCD_。

<StackPanel>
     <Button .../>
     <Button .../>
</StackPanel>

(另请参阅:面板概述)

设置第二种样式的目标类型

 <Style x:Key="StyleTwo"
           BasedOn="{StaticResource StyleOne}"
           TargetType="{x:Type Control}">
        <Setter Property="Control.Background"
                Value="Red"></Setter>
        <Setter Property="Control.Height"
                Value="20"></Setter>
    </Style>

将按钮放在堆叠面板或网格中

我猜BasedOn继承了其他样式类型的属性,并且您有

    Property="Control.Background"

设置在两种样式中,因此得到错误

    "The property "Content" is set more than once."

相关内容

  • 没有找到相关文章

最新更新