全局样式没有被应用

本文关键字:应用 样式 全局 | 更新日期: 2023-09-27 17:50:52

我有一个资源字典文件:

<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}}">

我如何使这些默认样式,而不必在每个元素上显式设置它们?

全局样式没有被应用

如果你想,例如,你的应用程序中的所有窗口有相同的样式,删除x:Key属性的样式与TargetType窗口。

使用x:Key属性将强制您在窗口中显式地使用该样式以应用它。如果你删除x:键,那么你的应用程序的所有Windows将默认使用该样式。

这里有一个链接,用更多的数据解释它:https://msdn.microsoft.com/en-us/library/ms745683(v=vs.110).aspx

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