首页上一页 1 下一页尾页 1 条记录 1/1页
老师,您好。
请问下列是否是折箱或是装箱的操作:
当A窗体打开B窗体,然后在B窗体上的textBox1的Click事件中,将B窗体TextBx的值传给A窗体的textBox1。
A窗体的代码:
//打开窗体B
prviate void button_Click(object sender,EventArgs e)
{
B _bform=new B();
_bform.Owner=this;
_bfrom.Show();
}
B窗体的代码:
private textBox1_Click(object sender,EventArgs e)
{
A _aform=(A)this.Owner; //请问这代码算不算拆箱?
((TextBox1)_aform.Controls["textbox1"]).Text=this.textBox1.text;
this.Hide();
}