如何在 WPF 应用程序中引用根目录?
我正在实例化一个 Uri
用作图像源,但我提供的字符串(文件路径)无效。我明白为什么 - 这是因为我使用相对路径:
"Resources/Images/" + draggedAct.Category.ToLower() + ".png"
当我在 asp .net
中遇到此问题时,我使用 Server.MapPath(imageString)
来解析完整路径但我不知道 WPF 中的等效项。
非常感谢,
丹
I'm instancing a Uri
to be used as an image source but the string (file path) I'm providing is invalid. I understand why - it's because I'm using a relative path:
"Resources/Images/" + draggedAct.Category.ToLower() + ".png"
When I had this problem in asp .net
I used Server.MapPath(imageString)
to resolve the full path but I don't know the equivalent in WPF.
Thanks a lot,
Dan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 pack uri 语法(请参阅 msdn:http: //msdn.microsoft.com/en-us/library/aa970069%28v=vs.85%29.aspx):
或:
use the pack uri syntax (see msdn: http://msdn.microsoft.com/en-us/library/aa970069%28v=vs.85%29.aspx):
or:
您可以使用包 URI,如此 StackOverflow 问题的答案中所述:设置 WPF 图像代码中的源代码
You can use a pack URI, as described in the answer to this StackOverflow Question: Setting WPF image source in code