不使用转换器将图片绑定到WPF中的控件

发布于 2024-12-02 23:25:10 字数 211 浏览 1 评论 0原文

我有一个自定义对象,其中图片为字符串(仅文件名) 我想显示。

问题是图像存储在项目的“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 技术交流群。

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

发布评论

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

评论(1

娇柔作态 2024-12-09 23:25:10

您可以绑定到 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'.

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