未应用全局样式

Global style isn't being applied

我有这样一个资源字典文件:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                xmlns:local="clr-namespace:TIMS.Common">

<local:ViewModelLocator x:Key="ModelLocator" />

<Style x:Key="DefaultWindowStyle" TargetType="Window">
    <Setter Property="Background" Value="Cyan" />
</Style>

<Style x:Key="DefaultPageStyle" TargetType="Page">
    <Setter Property="Background" Value="Red" />
</Style>

<Style x:Key="DefaultGroupBoxStyle" TargetType="GroupBox">
    <Setter Property="Background" Value="DarkGray" />
</Style>

它包含在我的 App.XAML 中:

<Application x:Class="TIMS.App"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:local="clr-namespace:TIMS.Common"
         StartupUri="Views/MainWindow.xaml">

<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="/TIMS;component/Resources.xaml" />
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

但是,除非我在 XAML 中专门为该对象设置样式,否则此样式不适用。

示例:

<Window x:Class="TIMS.Views.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:TIMS.Views"
    xmlns:nav="clr-namespace:System.Windows.Navigation;assembly=PresentationCore"
    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
    xmlns:valueConverters="clr-namespace:TIMS.Utils.ValueConverters;assembly=TIMS.Utils"
    x:Name="Main"
    Title="Tote Inventory Management System - Southeastern Grocers"
    Width="1024"
    Style="{StaticResource DefaultWindowStyle}"
    Height="768"
    DataContext="{Binding MainWindowViewModel,
                          Source={StaticResource ModelLocator}}">

我怎样才能使它们成为默认样式而不必在每个元素上明确设置它们?

例如,如果您希望应用中的所有 windows 具有相同的样式,请使用 TargetType Window 删除样式的 x:Key 属性 .

拥有 x:Key 属性 将强制您明确使用 windows 中的样式来应用它。如果您删除 x:key,则您应用的所有 Windows 都将默认使用该样式。

这里有一个 link 更详细地解释了它:https://msdn.microsoft.com/en-us/library/ms745683(v=vs.110).aspx

简而言之,如果您希望您的样式是全局的并且默认应用于应用中所有 TargetType 类型的控件,请不要为您的样式设置键。如果您希望样式仅应用于 TargetType 类型的某些控件,请为您的样式设置一个键并在将使用它的控件上显式使用它。