当我尝试加载一些数据并相应地设置ComboBox的索引时,它会给我一个错误," 0"不是SelectedIndex的有效数量
组合框肯定有超过0项。这些都是正确添加的。也应正确读取索引应设置的数字,但不会设置索引。如果我对从文件中设置它的数量进行硬编码并不重要。
代码段:
((System.Windows.Forms.ComboBox)ctrlToSet).Text = n["Text"].InnerText;
string s = n["SelectedIndex"].InnerText;
int nd = 0;
int.TryParse(s, out nd);
CB.SelectedIndex = nd;