WPF DataGrid 控件:插入新行
WPF:我有一个从列表绑定的网格,我想在所选行之前插入一行。 我可以通过在列表中插入新的空白记录并重新绑定我的网格来做到这一点,但问题是我的网格在此之后不会持续存在,就像某些单元格在插入新行之前被禁用,但在插入新行(重新绑定)之后所有这些单元格都启用再次。
WPF : i have a grid which is bind from a List i want Insert a row before selected row.
i can do this via insert a new blank record into a List ad rebind my grid but problem is my grid not persist after this like some cell are disable before insert the new row but after insert the new row(rebind) all those cells are enable again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ObservableCollection
,这使您可以以无干扰的方式添加项目,因为您根本不需要重新绑定网格。Use an
ObservableCollection
, this allows you to add items in a non-disruptive manner since you do not need to rebind the grid at all.