我正在尝试从列表框元素填充组合框。
这是代码:
foreach(string elements in (Application.OpenForms[1] as Impostazioni).listBox1)
{
cbxValuta.Items.Add(elements);
}
但我从 Visual Studio 2012 收到此错误:
错误 1 foreach 语句无法对“System.Windows.Forms.ListBox”类型的变量进行操作,因为“System.Windows.Forms.ListBox”不包含“GetEnumerator”的公共定义
我不知道如何解决这个错误。