如何使样式通用,以便我可以在整个应用程序中使用它?

Jok*_*ini 4 c# wpf xaml

我在这里搜索过,但找不到解释如何设置“样式资源”的明确答案。就我而言,我的对话框控制几个按钮和列表,以及我想为其设置通用主题/样式的其他各种控件。与在 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>
Run Code Online (Sandbox Code Playgroud)

顺便说一句,为什么在资源样式 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>
Run Code Online (Sandbox Code Playgroud)

Pat*_*man 5

将特定于实例的样式设为通用样式需要遵循几个步骤。

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

    <Style TargetType="Button">
    
    Run Code Online (Sandbox Code Playgroud)
  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>
    
    Run Code Online (Sandbox Code Playgroud)
  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>
    
    Run Code Online (Sandbox Code Playgroud)