WPF类库中的全局静态资源?

时间:2010-06-25 05:36:15

标签: wpf xaml wpf-controls mvvm-light

在WPF应用程序中,您可以将全局静态资源放在app.xaml ..中,如

 <Application.Resources>
        <!--Global View Model Locator-->
        <vm:ViewModelLocator x:Key="Locator"
                             d:IsDataSource="True" />
    </Application.Resources>

那是来自MVVM Light;)。现在,如果你的项目是一个wpf类库,那么初始化这种全局静态资源的正确方法是什么?

1 个答案:

答案 0 :(得分:4)

您可以使用您的资源创建ResourceDictionary,并使用您的代码合并字典,如下所示。

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:vm="clr-namespace:WPFProject.ViewModel"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<vm:ViewModelLocator x:Key="Locator" 
                         d:IsDataSource="True" />

代码:

 Application.Current.Resources.MergedDictionaries.Add(Application.LoadComponent(
           new Uri("/WPFProject;Component/Resources/ResourceDictionary1.xaml", UriKind.Relative)) as ResourceDictionary);