不使用转换器将图片绑定到WPF中的控件
我有一个自定义对象,其中图片为字符串(仅文件名) 我想显示。
问题是图像存储在项目的“images”目录中,因此完整路径现在是“images/{image name}”
我如何正确绑定它?
我想我可以用转换器轻松做到这一点,但是有什么方法可以避免它,例如: <图像源="{绑定路径=FullPath+"/"+图片}">
?
i'm having a custom object with Picture as a string (file name only)
and i want to display.
the problem is that the image is stored in "images" directory of the project so the full path is now "images/{image name}"
how can i bind it correctly ?
i can do it easily with converter i guess, but is there any way to avoid it like:<Image Source="{Binding Path=FullPath+"/"+Picture}">
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以绑定到 ViewModel 中的聚合属性,然后将您喜欢的任何路径放入其中。这样 ViewModel 就成为“转换器”。
You could bind to an aggregated property in your ViewModel and then put whatever path you like into that. That way the ViewModel becomes the 'converter'.