将对象列表绑定到 WPF ListView

发布于 2024-08-29 20:39:27 字数 421 浏览 6 评论 0原文

我有一个对象列表,我想将其绑定到 WPF 应用程序中的 ListView 控件。 对象已经有一个 DataTemplate,所以不需要定义它。
对象列表是代码隐藏文件中的属性,格式为 list
当我以编程方式添加一个对象时,它看起来很好。但是当我尝试将 ListBox 的 ItemSource 绑定到对象列表时,什么也没有显示。 我正在使用以下绑定:

<ListBox ItemsSource="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Window}}, Path=Portfolios}"/>

我尝试绑定的属性名称是 Portfolios 并且存在于父窗口中

I have a list of objects which i want to bind to a ListView control in my WPF application.
The Objects have a DataTemplate already, so no need to define that.
The list of objects is a property in the codebehind file in the format list<object>
When i add one object programatically, it appears fine. But when i try to bind the ItemSource of the ListBox to the list of objects, nothing shows up.
I am using the following binding:

<ListBox ItemsSource="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Window}}, Path=Portfolios}"/>

where the name of the property i am trying to bind to is Portfolios and exists on the parent window

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

清秋悲枫 2024-09-05 20:39:27

添加新项目时,List 对象不会自动报告。尝试使用 ObservableCollection<> 来代替,看看是否有帮助。

List<> objects don't automatically report when a new item is added. Try using an ObservableCollection<> instead, and see if that helps.

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