11

我有一个需要在运行时托管 WPF 控件的 Windows 窗体应用程序。我已经完成了基本的托管和交互(使用 ElementHost 控件)并且一切正常,直到我尝试做一些需要 WPF 控件来使用已定义的自定义资源字典的事情。(WPF 控件及其所有资源字典都定义在同一个 WPF 控件库 DLL 中。)

一旦发生这种情况,我就会收到一堆看起来像这样的错误:

System.Windows.ResourceDictionary Warning: 9 : Resource not found; ResourceKey='DocumentHeaderInterestStyle'

我找到了一个参考资料链接由于归档而失效 可能是最初参考的同一篇文章)。这谈到了这一点,但似乎这篇文章更多地从 WPF 方面处理事情,但我真的不想对 WPF 控件进行更改,因为一切都在独立的 WPF 应用程序中工作。

如果实现这一点的唯一方法是在 WPF 端进行更改,我可以进行这些更改(我不负责 WPF 控件库,但也为同一家公司工作的人,所以这不是问题其他而不是让他有时间进行更改。)但我希望我可以在 WinForms 方面做一些事情来让它发挥作用。

WPF 控件库在项目中定义了一个名为“Default.xaml”的资源字典文件,具有以下属性:

构建操作:页面复制到输出目录:不要复制自定义工具:MSBuild:Compile

独立 WPF 应用程序的 App.xaml 文件中有以下条目:

    <ResourceDictionary x:Uid="ResourceDictionary_1">
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary x:Uid="ResourceDictionary_2" Source="/SmartClient.Infrastructure;component/Themes\Default.xaml"/>
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>

看起来控制库应该已经知道如何获取它的资源。使用 Resources.MergedDictionaries.Add() 似乎应该可以工作,但是我在哪里可以获得现有字典的实例?

4

3 回答 3

4

假设你知道你需要什么资源(听起来像你做的那样),你应该能够自己“注入”它们。就像是:

var wpfControl = new ...;
wpfControl.Resources.Add(...);
elementHost.Child = wpfControl;

在您的问题中,您提到控制库中有现有的资源字典。如果是这样,您可以这样做:

var wpfControl = new ...;
wpfControl.Resources.MergedDictionaries.Add(/* instance of existing dictionary */);
elementHost.Child = wpfControl;
于 2009-02-23T21:43:32.067 回答
2

为了加载嵌入到程序集中的资源字典,我使用以下代码段在运行时加载它们:

//using System.Windows
ResourceDictionary dict = new ResourceDictionary();
dict.Source = new Uri("MyResourceDictionary.xaml", UriKind.Relative);

Application.Current.Resources.MergedDictionaries.Add(dict);

这也适用于在可执行目录中加载字典。

于 2009-07-21T19:05:51.440 回答
1

假设您将样式/模板/资源划分为许多文件Resources1.xaml,并且Resources2.xaml可以将它们聚合到单个资源字典 ( AllResources.xaml) 中。可以轻松地将资源字典添加到控件的 xaml 文件中的控件。请参见下面的示例。

(!)设置Resources1.xamlResources2.xamlAllResources.xaml建立行动Page

资源1.xaml

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

    <ControlTemplate x:Key="ScrollViewerControlTemplate" TargetType="{x:Type ScrollViewer}">
        ...
    </ControlTemplate>

    <LinearGradientBrush x:Key="VerticalScrollBarBackground" EndPoint="1,0" StartPoint="0,0">
        ...
    </LinearGradientBrush>

    <Style x:Key="StyleA" TargetType="{x:Type ScrollBar}">
        ...
    </Style>

</ResourceDictionary>

资源2.xaml

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">


    <Style x:Key="StyleB" TargetType="{x:Type ScrollBar}">
        ...
    </Style> 

    <Style x:Key="StyleC" TargetType="{x:Type TextBlock}">
        ...
    </Style>

</ResourceDictionary>

所有资源.xaml

将资源字典源添加为AllResources.xaml的相对路径

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="Resources1.xaml" />
        <ResourceDictionary Source="Resources2.xaml" />
    </ResourceDictionary.MergedDictionaries>
</ResourceDictionary>

最后在你的 UserControl

<UserControl.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="pack://application:,,,/projectName;component/PathToTheFileRelativeToProjectRootDirectory/AllResources.xaml
        <converters:StringToUpperCaseConverter x:Key="StringToUpperCaseConverter" />
        <converters:LocalizationEntryToStringCaseConverter x:Key="LocalizationEntryToStringCaseConverter" />
    </ResourceDictionary>
</UserControl.Resources>
于 2015-09-08T13:29:00.113 回答