从 ObservableCollection 中删除当前行
我有与 ObservableCollection 绑定的列表视图。我想通过单击按钮从 ObservableCollection
中删除列表视图中的选定行。
我如何获得选定的行位置?我的集合不包含 ID
您可以在此处查看我正在使用的代码。
I have list view which is binding with ObservableCollection
. I want to delete selected row in the list view from ObservableCollection
on a button click.
How i can get selected row position? My collection does not contains ID
You can see the code i'm using here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您有常规类(没有覆盖 Equals),那么您可以简单地删除它:
Assuming you have regular classes (no override of Equals) then you can simply Remove it:
使用 SelectedIndex 属性列表视图:
Use SelectedIndex Property of your ListView: