为什么组合框项目为空,
<ComboBox ItemsSource="{Binding Path=list}" ......>
所以
public List<string> _list = new List<string>();
public List<string> list
{
get
{
return _list;
}
set
{
_list = value;
}
}
并添加新项目
while (combodata.Read())
{
list.Add(combodata.GetString(0));
}
INotifyPropertyChanged
我觉得还是需要用DependencyProperty
但是不知道这个怎么用,请大家帮帮我!