我有这段代码:
private void FormMain_Shown(object sender, EventArgs e)
{
ComboBox cmbx;
foreach (Control C in this.Controls)
{
if (C.GetType() == typeof(ComboBox))
{
cmbx = C as ComboBox;
//cmbx.Items.AddRange(cmbxRow0Element0.Items); <= illegal
object[] obj = new object[cmbxRow0Element0.Items.Count];
cmbxRow0Element0.Items.CopyTo(obj, 0);
cmbx.Items.AddRange(obj);
}
}
}
...但是它不起作用 - 我在Form上的tabControl上的tabPage上有几个组合框,cmbxRow0Element0在设计时填充了项目。但是,上述将其项目复制到所有其他组合框的尝试都失败了。
这是我现在拥有的代码,它仍然不起作用:
public FormMain()
{
InitializeComponent();
for (int i = 0; i < 10; i++)
{
this.cmbxRow0Element0.Items.Add(String.Format("Item {0}", i.ToString()));
}
foreach (Control C in this.Controls)
{
ComboBox cmbx = null;
// The & test ensures we're not just finding the source combobox
if ((C.GetType() == typeof(ComboBox)) & ((C as ComboBox) != this.cmbxRow0Element0))
cmbx = C as ComboBox;
if (cmbx != null)
{
foreach (Object item in cmbxRow0Element0.Items)
{
cmbx.Items.Add(item);
}
}
}
}
也许这与组合框控件上的标签页上的组合框有关?
到达下面第一行的断点,但永远不会到达第二行:
if ((C.GetType() == typeof(ComboBox)) & ((C as ComboBox) != this.cmbxRow0Element0))
cmbx = C as ComboBox;
问题是“查找”不够具体 - 必须指定特定的tabPage。有关详细信息,请参阅this。
答案 0 :(得分:1)
试试这个:
var items = cmbxRow0Element0.Items.OfType<object>().ToArray();
foreach (ComboBox c in this.Controls.OfType<ComboBox>())
{
c.Items.AddRange(items);
}
如果您使用tabControl
作为容器,那么这意味着您的组合框不是您的Form的子元素。因此,您需要访问容器的Control
集合,这是tabControl
。您可以使用this.NameOfYourTabControl.Controls
。
答案 1 :(得分:1)
快速测试Windows窗体应用程序(VS Express 2012)显示了这种方法。在新的空白Windows窗体应用程序中,删除三个(或更多)ComboBox控件:
public Form1()
{
InitializeComponent();
for (int i = 0; i < 10; i++)
{
this.comboBox1.Items.Add(String.Format("Item {0}", i.ToString()));
}
foreach (Control C in this.Controls)
{
ComboBox cmbx = null;
// The & test ensures we're not just finding the source combobox
if ((C.GetType() == typeof(ComboBox)) & ((C as ComboBox) != this.comboBox1))
cmbx = C as ComboBox;
if (cmbx != null)
{
foreach (Object item in comboBox1.Items)
{
cmbx.Items.Add(item);
}
}
}
}