WPF用户控件样式

时间:2009-03-10 21:27:14

标签: wpf user-controls styles

我想设置项目所有用户控件的background属性。

我试过

<style TargetType={x:Type UserControl}>
    <setter property="Background" Value="Red" />
</style>

它编译但不起作用。

¿任何想法? 谢谢!

2 个答案:

答案 0 :(得分:22)

您只能将样式设置为特定的类,因此这将起作用(创建一个UserControl对象,不是很有用):

<Window.Resources>
    <Style TargetType="{x:Type UserControl}">
        <Setter Property="Background" Value="Red" />
    </Style>
</Window.Resources>
<Grid>
    <UserControl Name="control" Content="content"></UserControl>
</Grid>

但这不是(创建一个派生自UserControl的类):

<Window.Resources>
    <Style TargetType="{x:Type UserControl}">
        <Setter Property="Background" Value="Red" />
    </Style>
</Window.Resources>
<Grid>
    <l:MyUserControl Name="control" Content="content"></l:MyUserControl>
</Grid>

您可以使用Style属性显式设置样式:

<Window.Resources>
    <Style TargetType="{x:Type UserControl}" x:Key="UCStyle">
        <Setter Property="Background" Value="Red" />
    </Style>
</Window.Resources>
<Grid>
    <l:MyUserControl Name="control" Content="content" Style="{StaticResource UCStyle}"></l:MyUserControl>
</Grid>

或为每个派生类创建样式,您可以使用BasedOn来避免重复样式内容:

<Window.Resources>
    <Style TargetType="{x:Type UserControl}" x:Key="UCStyle">
        <Setter Property="Background" Value="Red" />
    </Style>
    <Style TargetType="{x:Type l:MyUserControl}" BasedOn="{StaticResource UCStyle}" />
</Window.Resources>
<Grid>
    <l:MyUserControl Name="control" Content="content"></l:MyUserControl>
</Grid>

答案 1 :(得分:2)

我认为你错过了一些双引号:

试试这个:

<Window.Resources>
    <Style TargetType="{x:Type UserControl}">
        <Setter Property="Background" Value="Red" />
    </Style>
</Window.Resources>
<Grid>
    <UserControl Name="control" Content="content"></UserControl>
</Grid>