绑定到 XAML 中的整个数据项
我正在将 XAML 数据绑定用于 ListBox
,其 ItemSource
设置为 TypeA
对象列表。 ListBox
的 ItemTemplate
中的一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您根本不包含执行此操作的路径:-
Youn include no path at all to do that:-
你有没有尝试过这个:
Have you tried this: