3

我已经看到很多关于将 a 的内容添加Array到 a的内容ComboBox,但反之则不然。我想把a中的内容ComboBox加到aArray中,再发给另一个方法进行处理。

我已经.Items.Count确定了 的大小Array,但我不知道如何循环浏览ComboBox.

4

2 回答 2

8

通过查看您对问题的评论,您可能想要:

var arr = ingredientComboBox.Items.Cast<Object>()
          .Select(item => item.ToString()).ToArray();
于 2012-10-22T19:25:27.393 回答
3
   string[] items = new string[currentComboBox.Items.Count];

   for(int i = 0; i < currentComboBox.Items.Count; i++)
   {
       items[i] = currentComboBox.Items[i].ToString();
   }
于 2012-10-22T19:26:23.350 回答