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.
我在 winform 上有一个组合框,并且需要能够在组合框的数据绑定完成时调用一个方法。我很惊讶地发现 ComboBox 控件没有 DataBindingComplete 事件,就像 DataGridView 一样。
我如何知道数据绑定何时完成?组合框的数据绑定是否同步完成?(即,如果我有以下代码,是否保证在第二行代码时数据绑定完成?)
myComboBox.DataSource = foo SomeMethod()
您可以创建一个类来处理所有数据访问,然后在检索数据时,您可以从该层引发一个事件到您用来显示数据的调用表单。
数据访问层