从 ObservableCollection 中删除当前行

发布于 2024-11-26 17:43:06 字数 268 浏览 1 评论 0原文

我有与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

玻璃人 2024-12-03 17:43:06

假设您有常规类(没有覆盖 Equals),那么您可以简单地删除它:

 myCollection.Remove(Listbox1.Selecteditem)

Assuming you have regular classes (no override of Equals) then you can simply Remove it:

 myCollection.Remove(Listbox1.Selecteditem)
長街聽風 2024-12-03 17:43:06

使用 SelectedIndex 属性列表视图:

myCollection.RemoveAt(Listbox1.SelectedIndex);

Use SelectedIndex Property of your ListView:

myCollection.RemoveAt(Listbox1.SelectedIndex);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文