图像源路径无法解析
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它被标记为资源,您必须像这样使用它:
用您的命名空间的名称替换命名空间。
if its marked as a resource you have to use it like this:
where you replace namespace with the name of your namespace.