Wpf 是否可以引用资源字典并在同一资源部分中定义样式?

Wpf 是否可以引用资源字典并在同一资源部分中定义样式?,wpf,xaml,styles,resourcedictionary,Wpf,Xaml,Styles,Resourcedictionary,像这样: <Window x:Class="WpfApplication3.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="350" Width="525"> <Window.Resources>

像这样:

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

    <Window.Resources>
        <ResourceDictionary x:Key=""whatever" Source="colors.xaml" />
        <Style TargetType="Button">
            <!- button style using colors defined in colors.xaml -->
        </Style>
    </Window.Resources>

    <StackPanel>
        <Button Background="{DynamicResource background1}" Height="50"></Button>
        <Button Background="{DynamicResource background2}" Height="50"></Button>
    </StackPanel>

</Window>


合并很容易

<Window.Resources>
   <ResourceDictionary>
     <ResourceDictionary.MergedDictionaries>
       <ResourceDictionary x:Key=""whatever" Source="colors.xaml" /> 
    </ResourceDictionary.MergedDictionaries>
    <Style TargetType="Button">
         <!- button style using colors defined in colors.xaml -->
    </Style>
  </ResourceDictionary>
</Window.Resources>