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

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

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

最佳答案

您可以使用资源创建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);

关于wpf - WPF类库中的全局静态资源?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3115783/

10-13 06:02