我有以下属性Temp2
:(我的UserControl实现了INotifyPropertyChanged)
ObservableCollection<Person> _Temp2;
public ObservableCollection<Person> Temp2
{
get
{
return _Temp2;
}
set
{
_Temp2 = value;
OnPropertyChanged("Temp2");
}
}
public event PropertyChangedEventHandler PropertyChanged = delegate { };
private void OnPropertyChanged(string propertyName)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
我需要动态创建一个列表视图。我在XAML中有以下列表视图:
<ListView
Name="listView1"
DataContext="{Binding Temp2}"
ItemsSource="{Binding}"
IsSynchronizedWithCurrentItem="True">
<ListView.View>
.... etc
现在我尝试使用c#创建相同的列表视图:
ListView listView1 = new ListView();
listView1.DataContext = Temp2;
listView1.ItemsSource = Temp2; // new Binding(); // ????? how do I have to implement this line
listView1.IsSynchronizedWithCurrentItem = true;
//.. etc
当我使用C#填充listview时,listview不会被填充。我做错了什么?
答案 0 :(得分:18)
您需要创建一个Binding
对象。
Binding b = new Binding( "Temp2" ) {
Source = this
};
listView1.SetBinding( ListView.ItemsSourceProperty, b );
传递给构造函数的参数是您在XAML绑定中习惯使用的Path
。
如果您像上面一样将Path
设置为Source
,则可以省略DataContext
和Temp2
,但我个人认为最好绑定到ViewModel (或其他数据源)并使用Path
而不是直接绑定到类成员。
答案 1 :(得分:2)
您必须设置Binding实例的一些属性。在你的情况下,它可能会像......
listView1.SetBinding(ListView.ItemsSourceProperty, new Binding { Source = Temp2 });
答案 2 :(得分:-1)
listView1.SetBinding(ListView.ItemsSourceProperty, new Binding());