Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。












想改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。

7年前关闭。



Improve this question




我有一个组合框,我想搜索其中的每个元素。

我怎样才能做到这一点? (而且每次的项数也不相同,但这并不重要)。

我正在使用C#Windows窗体应用程序。

最佳答案

你可以这样做

for (int i = 0; i < myComboBox.Items.Count; i++)
{
     string value = myComboBox.GetItemText(myComboBox.Items[i]);
}

09-26 23:59