在 WPF 应用程序中使用 pack URI 真的很重要吗?
为什么我们应该使用它们而不是普通的?
:有什么好处:
new Uri("pack://application:,,,/File.xaml");
使用这个:相比那个
new Uri("/File.xaml", UriKind.Relative);
Why should we use those, rather than ordinary ones?
what's the benefits of using this:
new Uri("pack://application:,,,/File.xaml");
over that:
new Uri("/File.xaml", UriKind.Relative);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一个 - 您可以通过在三个逗号后添加程序集名称来使用跨程序集。因此,您可以创建一个具有通用样式和其他可在多个程序集之间共享的 XAML 优点的共享库。
语法如下:
其中 Common 是程序集的名称,组件之后的所有内容都是该程序集中到映射资源的路径。后者只能在同一程序集中使用(并且应该是首选)。
我经常将它用于驻留在多个模块类型程序集之上的公共程序集中的 ResourceDictionaries。
The first one - you can use cross-assembly by adding a assembly-name after the three commas. So, you can create a shared library with common styles and other XAML-goodness that can be shared between several assemblies.
Syntax is like this:
where Common is the name of the assembly and everything after component is the path inside that assembly to the mapped resource. The latter can only be used inside the same assembly (and should be preferred).
I use it a lot for ResourceDictionaries residing in a common assembly above several module-type assemblies.