StaticResource 资源在外部程序集中的位置?
基本上,我想将所有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您将样式保留在另一个程序集中的
ResourceDictionary
中,则只需将其与当前资源合并(无论它们位于Window
还是UserControl< /code> 或其他)。
如果我们假设
ResourceDictionary
位于名称空间 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 aWindow
orUserControl
or whatever).If we assume that
ResourceDictionary
is under the namespace Resources; and...then you can merge the dictionaries as below: