如何使Style具有通用性,以便我可以在整个应用程序中使用它?

时间:2015-09-11 12:43:10

标签: c# wpf xaml

我在这里搜索SO以及哪些内容无法找到解释如何设置样式资源的明确答案'。在我的情况下,我的对话框控制几个按钮和列表,以及我想为其设置通用主题/样式的其他各种控件。与您在HTML中使用CSS文件的方式类似。

为了简单起见,在这个例子中,我想要在我的所有按钮上全面使用。但是我不希望在我的UI布局的xaml中包含所有这些样式资源。我想将样式移动到一般的xaml资源文件中,该文件只包含样式,这样我也可以轻松地将它们引用到整个工具中的其他wpf对话框中。

如何设置它以使用包含我的工具中各种控件的样式的常规资源文件?然后能够在我的xaml UI中引用和使用该样式'第

谢谢

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="200" Width="200">

    <Window.Resources>
        <Style TargetType="Button" x:Key="CoolButton" >
            <Setter Property="Margin" Value="1,2,1,2"/>
            <Setter Property="Background" Value="LightBlue"/>
            <Setter Property="HorizontalAlignment" Value="Left"/>
            <Setter Property="FontSize" Value="12" />
            <Setter Property="FontFamily" Value="Calibri" />
            <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate TargetType="{x:Type Button}">
                        <Border Background="{TemplateBinding Background}"
                    BorderBrush="Lavender" BorderThickness="5" CornerRadius="6,0,6,0" x:Name="bd">
                            <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" 
                    Margin="{TemplateBinding Padding}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" 
                    SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" RecognizesAccessKey="True" />
                        </Border>
                        <ControlTemplate.Triggers>
                            <Trigger Property="IsMouseOver" Value="True">
                                <Setter TargetName="bd" Property="Background" Value="LightGray"/>
                                <Setter Property="Foreground" Value="White" />
                                <Setter Property="Cursor" Value="Hand" />
                            </Trigger>

                        </ControlTemplate.Triggers>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>
    </Window.Resources>

    <StackPanel>
        <Button Style="{StaticResource CoolButton}" Content="Button" Margin="2" HorizontalAlignment="Left" VerticalAlignment="Top" Width="75"/>
        <Button Style="{StaticResource CoolButton}" Content="Button" Margin="2" HorizontalAlignment="Left" VerticalAlignment="Top" Width="75"/>
        <CheckBox Margin="2" Content="Great"></CheckBox>

    </StackPanel>
</Window>

另外请注意为什么在资源样式xaml中使用颜色变量不起作用?

    <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

        <!--COLORS-->
        <Color x:Key="AccentColor">#CC4021</Color>


        <Style TargetType="Button">
            <Setter Property="Foreground" Value="{StaticResource AccentColor}"/>
        </Style>

</ResourceDictionary>

1 个答案:

答案 0 :(得分:4)

要使特定于实例的样式成为通用样式,需要执行几个步骤。

  1. 删除Key。这将使样式用于每个按钮:

    <Style TargetType="Button">
    
  2. 将其移至资源文件,例如Default.xaml

    <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    >
        <Style TargetType="Button">
            ...
        </Style>
    </ResourceDictionary>
    
  3. 从中心点包含对资源的引用,例如App.xaml,它将加载资源。 App.xaml将导致样式在应用程序范围内一次性使用:

    <Application x:Class="..."
                 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
        <Application.Resources>
            <ResourceDictionary>
                <ResourceDictionary.MergedDictionaries>
                    <ResourceDictionary Source="Default.xaml" />                 
                </ResourceDictionary.MergedDictionaries>
            </ResourceDictionary>
        </Application.Resources>
    </Application>