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.
我已经翻遍了,什么也找不到。我找到的唯一解决方案是在添加项目时手动调用该函数,但这效率低下,我知道这是可能的。
将逻辑包装在一个单独的类中。这样,您只需调用一段代码,但您也可以知道何时添加项目。
.NET 列表框控件没有与此相关的事件。唯一的其他选择是将列表框子类化并手动收听。
ListBox.Items在您的情况下,将集合绑定到一个ObservableCollection以便您可以订阅该CollectionChanged事件不是更容易吗?
ListBox.Items
ObservableCollection
CollectionChanged