Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一个关于c#学校的程序我有comboboxGrade它是数据绑定其中的文本是年级名称,在选择一个作为年级名称的文本comboboxGrade.Text后我做了一些编码但之后确定学生统计为“通过" 我需要将当前文本的下一个文本放入一个字符串变量中,即在从表单中直观地选择一个等级后,文本将是 combobox.Text == "fourth" 但我需要在代码中获取下一个文本学生通过时是第五,怎么样?
有几种方法可以做到这一点。一个只是使用组合的是
if ((combobox.SelectedIndex >= 0) && ((combobox.SelectedIndex + 1) < combobox.Items.Count)) { String nextGrade = combobox.Items[combobox.SelectedIndex + 1].ToString(); }
我会在组合框绑定的数据上做类似的事情。