Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何监视 ComboBox 的更改?
SelectedIndexChanged 事件仅在通过从组合框中选择不同的值来更改选择时触发,我想在手动删除选择并且未选择任何值时监视 chaes。
提前致谢!
简单,只需使用事件TextChanged:
TextChanged
在 Text 属性值更改时发生。
请参阅有关它的MSDN 文档。
只需扩展组合框类并覆盖 SelectedIndexChange 事件即可满足您的需求。
您可以选择Indexchange or Valuechange or Textchange
Indexchange or Valuechange or Textchange
然后,您可以尝试放置一些代码。喜欢记录它的每一个变化。
就像将下面的代码添加到Valuechange
Valuechange
listbox1.items.add = combobox1.selecteditem
当然,您必须将可见变为错误