获取同一解决方案中另一个项目中图像的相对路径
我的解决方案中有一个包含多个项目的 Silverlight 项目。我想得到一个相对路径 到我的助手 C# 类中的项目 B 中的项目 A 中的图像。
解决方案
-Project A
-Helper.cs
-Project B
-image.jpg
Helper.cs 需要对 image.jpg 的引用
我无法从 prj B 添加对 prj A 的引用。
我可以执行以下操作吗:
Uri uri = new Uri("/project.name.projectA ;image.jpg", UriKind.Relative);
谢谢
I have a Silverlight project with several projects in my solution. I want to get a relative path
to an image in project A from project B inside my helper C# class.
solution
-Project A
-Helper.cs
-Project B
-image.jpg
Helper.cs need a reference to image.jpg
I can't add a reference to prj A from prj B.
Can I do something like:
Uri uri = new Uri("/project.name.projectA;image.jpg", UriKind.Relative);
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
pack://application:,,,/ReferencedAssembly;component/ResourceFile.xaml
将 ReferencedAssembly 替换为引用的程序集的名称,将 ResourceFile.xaml 替换为文件的名称其中具有构建类型资源。
资源文件包 URI 引用的程序集
pack://application:,,,/ReferencedAssembly;component/ResourceFile.xaml
Replace ReferencedAssembly with the name of the referenced assembly and ResourceFile.xaml with the name of the file in it which has build type resource.
Resource File Pack URIs Referenced Assembly