数据绑定到 DataTemplate.IsSelected 以查看模型
如何将 DataTemplate
的 IsSelected
属性数据绑定到我的视图模型?
How do I databind to the DataTemplate
's IsSelected
property to my view model?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您的
DataTemplate
位于ItemsControl
或派生自它的控件中,例如ListBox
、DataGrid
等。ItemContainerStyle
示例中绑定IsSelected
在这种情况下,您可以在
ListBox
的I suppose your
DataTemplate
is within anItemsControl
or a control that derives from it, likeListBox
,DataGrid
etc. In that case you bindIsSelected
in theItemContainerStyle
Example for
ListBox