绑定到 XAML 中的整个数据项

发布于 2024-10-12 02:51:59 字数 395 浏览 1 评论 0原文

我正在将 XAML 数据绑定用于 ListBox,其 ItemSource 设置为 TypeA 对象列表。 ListBoxItemTemplate 中的一个 UI 元素绑定到 TypeA 的属性,如下所示:

Source="{Binding PropertyName, Converter={StaticResource customConverter}}"

现在,不再绑定到特定属性,我希望 UI 元素绑定到整个 TypeA 实例,以便自定义转换器可以计算多个属性的值。问题是:我可以使用哪种绑定表达式来实现这一目标?

I'm using XAML data binding for a ListBox whose ItemSource is set to a list of TypeA object. One UI element in the ItemTemplate for the ListBox is bound to a property of TypeA as follows:

Source="{Binding PropertyName, Converter={StaticResource customConverter}}"

Now, instead of binding to a specific property, I want the UI element to be bound to the whole TypeA instance so that the custom converter can compute value from multiple properties. The question is: which binding expression I can use to achieve that?

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

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

发布评论

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

评论(2

谜泪 2024-10-19 02:51:59

您根本不包含执行此操作的路径:-

 Source="{Binding Converter={StaticResource customConverter}}

Youn include no path at all to do that:-

 Source="{Binding Converter={StaticResource customConverter}}
冰之心 2024-10-19 02:51:59

你有没有尝试过这个:

Source="{Binding ., Converter={StaticResource customConverter}}"

Have you tried this:

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