Wpf DataGrid通过DataBinding隐藏完整行
是否有可能通过 DataBinding 隐藏 DataGrid 行:
如果我的 BO 或 ViewModel 项目具有可见性属性,是否可以声明一个绑定,以便在该属性设置为不可见时该行将被隐藏,反之亦然?
Is there a possiblity to hide DataGrid-rows through DataBinding:
If I have items of a BO or a ViewModel that have a visibilty-property, is there a possibility to declare a binding so that the row will be hidden if the property is set to invisible and vice versa?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应该可以通过
RowStyle
来完成。像这样的东西:It should be possible to do it via
RowStyle
. Something like this: