父按钮面板内的子窗体如何在按钮单击时访问父窗体控件

时间:2015-03-02 12:47:26

标签: c# forms panels

我有一个父窗体,它有一个textbox1,一个panel1和一个button1。我在button1上点击了在panel1中打开另一个表单(比如form2)。 form2有一个文本框和按钮。当我在文本框中输入一个值并单击子窗体中的按钮时,子窗体的文本框值应该复制到父窗体的文本框值,而panel1应该变为不可见。

我使用以下代码, 对于button1单击(父窗体),

        panel1.Visible = true;
        Form2 f2 = new Form2();
        f2.TopLevel = false;
        f2.AutoScroll = true;
        panel1.Location = new Point(this.ClientSize.Width / 2 - panel1.Size.Width / 2, this.ClientSize.Height / 2 - panel1.Size.Height / 2);
        panel1.Anchor = AnchorStyles.None;
        panel1.Controls.Add(sp);
        f2.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
        f2.Dock = DockStyle.Fill;
        f2.usrnam = this.usrnam;
        f2.connectionstring = this.connectionstring;
        f2.Show();

对于子窗体的按钮单击,

        string s = textBox1.Text;
        Form1 f1= new Form1(); /* However this line is wrong , I donot want to initialize the form again i just need a way to access Form1 controls */
        f1.panel1.Visible = false;
        f1.textBox1.Text = s;

2 个答案:

答案 0 :(得分:1)

以两种形式创建表单对象。类似的东西:

以父母形式:

public System.Windows.Forms.Form MyChild

panel1.Visible = true;
Form2 f2 = new Form2();
f2.MyParent = this;
this.MyChild = f2;
-------
-------
f2.Show();

在孩子:

public System.Windows.Forms.Form MyParent;

string s = textBox1.Text;
Form1 f1 = (Form1)this.MyParent;
f1.panel1.Visible = false;
f1.textBox1.Text = s;

您需要将这些控件的access modifiers设为public

答案 1 :(得分:0)

在构造函数中传递form1,然后在表单2中保留它的本地副本

Form2 f2 = new Form2(this);
Form1 f1=null;

public Form2( Form1 f1)
{
   this.f1=f1;
}

表格2代码

string s = textBox1.Text;
f1.panel1.Visible = false;
f1.textBox1.Text = s;