将 BindingList 绑定到集合
我有一个返回这样的集合的库:
public IEnumerable Alerts { .. }
我想将此集合转换为 BindingList 以在 GUI 中使用。保持 BindingList 与 IEnumerable 集合同步的最佳方法是什么?
编辑:对于这个问题,假设我无法控制该库,并且实际实现使用列表。
但我不想碰这段代码。
该库还具有与 AddAlert、RemoveAlert 等良好的界面。保持 GUI 与所有这些更改同步的最佳方法是什么?
I have a library that returns a collection like this:
public IEnumerable Alerts { .. }
and I want to turn this collection into a BindingList for use in the GUI. What is the best way to keep a BindingList synchronised with an IEnumerable collection?
edit: For this problem, assume I have no control of the library and the actual implementation uses a List.
But I do not want to touch this code.
This library also has a nice interface with AddAlert, RemoveAlert etc. What is the best way to keep the GUI synchronised with all these changes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
类的内容,您应该能够从
BindingList
派生,重写一些关键方法 - 类似于:假设您正在包装的类公开了诸如
Insert
之 在您操作列表时保持同步。Assuming the class you are wrapping exposes things like
Insert
, you should just be able to derive fromBindingList<T>
, overriding a few key methods - something like:This should result in the lists staying in sync as you manipulate them.