将绑定列表数据绑定到组合框并删除项目
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了答案。我必须使用 BindingSource 作为中间人,
这样我就可以获取值更改事件,甚至在删除某些内容时获取多个事件。
Found an answer. I had to use a BindingSource as middleman
This way I do get value changed events and even more than one when I deleted something.