我应该添加什么对象集合?

发布于 2025-01-06 04:56:16 字数 239 浏览 1 评论 0原文

我在 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?

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时间你老了 2025-01-13 04:56:16

您的列表应该绑定到包装 ObservableCollection 的 ICollectionView。添加时,您将添加到此 Observable 集合中。

private readonly ObservableCollection<Stock> listToAddTo;

public ICollectionView List2 { get; private set; }

构造函数

  listToAddTo = new ObservableCollection<Stock>();
  List2 = CollectionViewSource.GetDefaultView(listToAddTo);

其中 List2 是绑定到的

Your List should be bound to an ICollectionView that wraps an ObservableCollection. When you add, you add to this Observable collection.

I.e

private readonly ObservableCollection<Stock> listToAddTo;

public ICollectionView List2 { get; private set; }

Constructor

  listToAddTo = new ObservableCollection<Stock>();
  List2 = CollectionViewSource.GetDefaultView(listToAddTo);

Where List2 is what is bound to

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文