我有两种形式,我想从Form2重新加载Form1中的组合框项目。 我将Form1设置为Form2的MdiParent,如下所示:
Form2 f2 = new Form2();
f2.MdiParent = this;
f2.Show();
如何从Form2中访问Form1控件?
答案 0 :(得分:2)
试试这个,
String nameComboBox = "nameComboBoxForm1"; //name of combobox in form1
ComboBox comboBoxForm1 = (ComboBox)f2.MdiParent.FindControl(nameComboBox);
答案 1 :(得分:1)
在Form1
上你需要定义一个这样的属性:
Public ComboBox.ObjectCollection MyComboboxitems{
get{ return {the Combox's name}.Items}
}
然后在Form2
事件处理程序中的Load
:
{name of form2 combobox}.Items = ((Form1)Me.MdiParent).MyComboboxitems;
这是为了不公开组合框上的组合框的所有属性,只是你想要的那个。
在代码示例中,将{...}替换为实际的对象名称。
答案 2 :(得分:1)
您可以在Form1中声明一个公共静态列表,并将其设置为form1combobox的数据源,如下所示。
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.IsMdiContainer = true;
}
public static List<string> list;
private void button1_Click(object sender, EventArgs e)
{
Form2 frm2 = new Form2();
frm2.MdiParent = this;
frm2.Show();
comboBox11.DataSource = list;
}
}
在form2的load事件中,设置声明的form1列表以引用具有form2.combobox项的新实例化列表。
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
List<string> list = new List<string> { "a", "b", "c" };
private void Form2_Load(object sender, EventArgs e)
{
comboBox1.DataSource = list;
Form1.list = list;
}
}
答案 3 :(得分:1)
试试这个:
Form1 f1 = (Form1)Application.OpenForms["Form1"];
ComboBox cb = (ComboBox)f1.Controls["comboBox1"];
cb.Items.Clear();
cb.Items.Add("Testing1");
cb.Items.Add("Testing2");