将绑定列表数据绑定到组合框并删除项目

发布于 2024-12-04 14:12:06 字数 290 浏览 0 评论 0原文

我正在尝试使用 Windows 窗体数据绑定将组合框连接到 ViewModel 类。

var items = new BindingList<Person>();
comboBox.DataSource = items;
comboBox.DisplayMember = "Name";

一切正常,除非我从列表中删除项目。例如,如果我删除当前选定的项目(在组合框中选择),则组合框的 selectedIndexChanged 和 SelectedValueChanged 事件不会触发。

I am trying to use windows forms databinding to hook up a combobox to a ViewModel class.

var items = new BindingList<Person>();
comboBox.DataSource = items;
comboBox.DisplayMember = "Name";

All works ok except when I remove items from the list. For example if I remove the currently selected item (selected in the combobox) the selectedIndexChanged and SelectedValueChanged events of the combobox don't fire.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

残花月 2024-12-11 14:12:06

找到了答案。我必须使用 BindingSource 作为中间人,

  var bindingsSource = new BindingSource();
  bindingsSource.DataSource = new BindingList<Person>();
  comboBox1.DataSource = bindingsSource;
  comboBox1.DisplayMember = "Name";

这样我就可以获取值更改事件,甚至在删除某些内容时获取多个事件。

Found an answer. I had to use a BindingSource as middleman

  var bindingsSource = new BindingSource();
  bindingsSource.DataSource = new BindingList<Person>();
  comboBox1.DataSource = bindingsSource;
  comboBox1.DisplayMember = "Name";

This way I do get value changed events and even more than one when I deleted something.

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