如果我把ItemSource作为ArrayList对象,如何从ComboBox获取SelectedItem

时间:2016-06-19 17:47:26

标签: c# combobox

ArrayList al=new ArrayList();
for(int i=0;i<lista.Count;i++){
    al.Add(new {Name=lista[i]});
}
comboBox.ItemsSource="al";
comboBox.DisplayMemberPath="Name";

如何从SelectedItem获取ArrayList?我将字符串值放在我的ArrayList名称中,我尝试使用强制转换字符串

0 个答案:

没有答案