图像源路径无法解析

发布于 2024-12-16 00:34:24 字数 510 浏览 2 评论 0原文

我的 xaml 位于一个字符串中,我使用转换器将其渲染为网格。但是我得到了这个例外。

*无法将属性“Source”中的字符串“../../Resources/info_16_hot.png”转换为“System.Windows.Media.ImageSource”类型的对象。无法定位资源“resources/info_16_hot.png”*

这是 XAML 字符串的片段

string m_image = "<Image Stretch='Fill' HorizontalAlignment='Center' VerticalAlignment='Center' Width='16' Height='16' Source='../../Resources/info_16_hot.png' />";

资源目录是同一目录 & info_16_hot.png 被标记为资源,请勿复制。将文件移动到同一目录并将源更新为 Source='info_16_hot.png' 仍然没有帮助。

I have my xaml in a string which i render as a grid using a converter. However I get this exception.

*Cannot convert string '../../Resources/info_16_hot.png' in attribute 'Source' to object of type 'System.Windows.Media.ImageSource'. Cannot locate resource 'resources/info_16_hot.png'*

Here is the snippet of the XAML string

string m_image = "<Image Stretch='Fill' HorizontalAlignment='Center' VerticalAlignment='Center' Width='16' Height='16' Source='../../Resources/info_16_hot.png' />";

Resources directory is the same directory & info_16_hot.png is marked as a Resource , Do not Copy. Moving the file to the same directory and updating the source to Source='info_16_hot.png' still does not help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

执笏见 2024-12-23 00:34:24

如果它被标记为资源,您必须像这样使用它:

Source='/namespace;component/Resources/info_16_hot.png'

用您的命名空间的名称替换命名空间。

if its marked as a resource you have to use it like this:

Source='/namespace;component/Resources/info_16_hot.png'

where you replace namespace with the name of your namespace.

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