数据网格中的列类型是组合框,我创建列表,并列出这个好的,如果我用 xaml 写的话
ItemsSource="{Binding Path=combolist}"
items 是 null 我的列表
List<string> combolist = new List<string>();
while (reader.Read())
{
combolist.Add(reader.GetString(0));
}
为什么项目为空?