绑定到observableCollection <string> listview </string>

时间:2010-05-04 12:52:32

标签: wpf xaml listview binding observablecollection

如果我有一个ListView(称为“MainList”)并想要绑定到集合中的元素,那么这是如何完成的。

Main.Items.Add(new ObserableCollection(){“hello”,“world”}

然后

                     

为什么这不起作用?我已尝试过大量其他绑定组合......

由于

Ú

1 个答案:

答案 0 :(得分:2)

你没有尝试过的一件事是:

Main.ItemsSource = new ObservableCollection<string> { "hello", "world" };

在您自己的代码中,您实际上将整个集合添加为ListView中的项目。当然这不是你的真实意图。