我应该添加什么对象集合?
我在 WPF 中使用 Prism。
我正在观看 Prism 入门套件,它有一个 ICollectionView。在该集合中,我需要添加其中选择的对象。我应该使用什么对象(或集合)来添加对象?
我的意思是在图像中,我有两个列表框,在第一个列表框中我有一个只读集合第二个是可以添加或删除对象的列表。
I'm using Prism in WPF.
I was watching the Prism starter kit, and it has a ICollectionView. In that collection, I need to add the object selected in it. What object (or collection) should I use to add objects?
I mean in the image, I have two listbox, in the first one I've got a readonly collection and the second one is a list where can add or remove objects.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的列表应该绑定到包装 ObservableCollection 的 ICollectionView。添加时,您将添加到此 Observable 集合中。
即
构造函数
其中 List2 是绑定到的
Your List should be bound to an ICollectionView that wraps an ObservableCollection. When you add, you add to this Observable collection.
I.e
Constructor
Where List2 is what is bound to