获取同一解决方案中另一个项目中图像的相对路径

发布于 2024-12-06 16:57:25 字数 395 浏览 0 评论 0原文

我的解决方案中有一个包含多个项目的 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 技术交流群。

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

发布评论

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

评论(1

猫卆 2024-12-13 16:57:25

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文