如何使用ResourceDictionary中定义的样式

时间:2014-03-01 12:20:26

标签: wpf xaml windows-8.1 resourcedictionary

我有几种常见的样式,我想在Windows 8.1应用程序的几个页面中共享它们。

我知道我可以用merge dictionaries option实现,但我不知道如何使用字典中定义的样式。

我试过了:

<Page.Resources>
<ResourceDictionary x:Key="lol">
    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="Themes/Generic.xaml" />
        <ResourceDictionary>
            <Style x:Key="TextViewAllStyle" TargetType="TextBlock">
            </Style>
        </ResourceDictionary>
    </ResourceDictionary.MergedDictionaries>
    <Style x:Key="TextViewAllStyle2" TargetType="TextBlock">
    </Style>
</ResourceDictionary>
<Style x:Key="TextViewAllStyle3" TargetType="TextBlock">
</Style>
</Page.Resources>

但是我的Visual Studio只能看到第三个......

<TextBlock Style="{StaticResource ResourceKey=TextViewAllStyle3}"/>

1 个答案:

答案 0 :(得分:17)

将以下标记添加到App.Xaml:

<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            -- reference your dictionaries here --
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

每个字典都可以按其完整路径添加:

<ResourceDictionary Source="pack://application:,,,/MySolution.MyProject;component/Theme/Generic.xaml"/>

如果在相同项目中的相对路径:

<ResourceDictionary Source="Themes\Generic.xaml"/>

或内联定义:

<Style x:Key="TextViewAllStyle" TargetType="TextBlock">
</Style>