StaticResource 资源在外部程序集中的位置?

发布于 2024-12-08 20:01:55 字数 138 浏览 0 评论 0原文

基本上,我想将所有 XAML 资源保留在外部程序集中(用于我的样式)。我在我的应用程序中引用了这个外部组件。

与卫星程序集或其他什么有关,或者我如何访问这些样式,以便我的应用程序仍然可以拥有 StaticResource 标记而不会出现编译错误?

Basically, I want to keep all my XAML resources in an external assembly (for my styles). I have a reference of this external assembly in my application.

Is there something to do with satellite assemblies or whatnot or how do I go about accessing these styles so that my application can still have StaticResource tags without compilation errors?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

荒路情人 2024-12-15 20:01:55

假设您将样式保留在另一个程序集中的 ResourceDictionary 中,则只需将其与当前资源合并(无论它们位于 Window 还是 UserControl< /code> 或其他)。

如果我们假设

  • 您的其他程序集名为“external. assembly.name”,则
  • ResourceDictionary 位于名称空间 Resources 下;并且
  • 字典名为“MyStyles.xaml”

...然后您可以合并字典,如下所示:

<UserControl.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary 
              Source="pack://application:,,,/external.assembly.name;component/Resources/MyStyles.xaml" />
        </ResourceDictionary.MergedDictionaries>
        <!-- other resources go here -->
    </ResourceDictionary>
</UserControl.Resources>

Assuming you keep your styles in a ResourceDictionary in the other assembly, you just need to merge it with your current resources (whether they are on a Window or UserControl or whatever).

If we assume that

  • your other assembly is named 'external.assembly.name'
  • the ResourceDictionary is under the namespace Resources; and
  • the dictionary is named 'MyStyles.xaml'

...then you can merge the dictionaries as below:

<UserControl.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary 
              Source="pack://application:,,,/external.assembly.name;component/Resources/MyStyles.xaml" />
        </ResourceDictionary.MergedDictionaries>
        <!-- other resources go here -->
    </ResourceDictionary>
</UserControl.Resources>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文