本文介绍了在C#中将组合框项目设置为选定状态的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好,
将C#组合框项目设置为选定状态的方法是什么
请帮助
感谢
Hello,
what is the method to set a c# combobox item to selected state
plz help
thanks
推荐答案
comboBox1.SelectedIndex = 1;
请参阅此处: SelectedIndex [ ^ ]
还有 SelectedItem [ ^ ]和SelectedText [ ^ ]
See here : SelectedIndex[^]
There is also SelectedItem [^]and SelectedText[^]
这篇关于在C#中将组合框项目设置为选定状态的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!