首页 > 代码库 > WPF 中资源路径的问题
WPF 中资源路径的问题
WPF 中资源路径的问题
1. 引用当前工程的资源(注意xxxx.png的build action 应设置为Resource 或Embedded Resource)
?
1 | <ImageBrush ImageSource= "/currentAssemblyName;component/subfoldername/xxxx.png" /> |
2.引用其它工程的资源 (注意xxxx.png的build action 应设置为Resource 或Embedded Resource)
?
1 | <ImageBrush ImageSource= "pack://application:,,,/otherAssemblyName;component/subfolder/xxx.png" /> |
3.引用相对路径下的资源(注意最好将xxx.png 的copy to output directory属性设置成 always copy )
?
1 | <ImageBrush ImageSource= "pack://siteoforigin:,,,./subfolder/xxx.png " /> |
4.引用绝对路径下的资源
?
1 | <ImageBrush ImageSource= "C:\test\xxx.png" /> |
5.当在使用pack 前缀的路径时,如果出现如下错误:System.UriFormatException: Invalid URI: Invalid port specified, 而你使用的pack路径又确实没有错误。这是因为pack:// scheme 没有注册,解决方案有两个:
a. 实例化一个System.Windows.Application, 在实例化过程中会调用PackUriHelper class
?
1 2 3 4 | if (!UriParser.IsKnownScheme( "pack" )) { new System.Windows.Application(); } |
b. 调用一次System.IO.Packaging.PackUriHelper.UriSchemePack
?
1 | string s = System.IO.Packaging.PackUriHelper.UriSchemePack; |
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。