标签: 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名称中,我尝试使用强制转换字符串
SelectedItem
ArrayList