全部博文(1293)
分类: C#/.net
2013-12-24 10:56:37
C#遍历ComboBox的内容:
一:
for (int i = 0; i < comboBox1.Items.Count; i++) { MessageBox.Show(comboBox1.GetItemText(comboBox1.Items[i])); }
二:
foreach (System.Data.DataRowView dr in comboBox1.Items) { string id = dr["student_id"].ToString(); string nane = dr["student_name"].ToString(); } //for (int i = 0; i < comboBox1.Items.Count; i++) //{ // DataRowView dr = (DataRowView)comboBox1.Items[i]; // string id = dr["student_id"].ToString(); // string nane = dr["student_name"].ToString(); //}
三:
for (int i = 0; i < comboBox1.Items.Count; i++) { comboBox1.SelectedIndex = i; string value = comboBox1.SelectedValue.ToString(); }
如果有更好的方法欢迎留言赐教,共同探讨。