我有一个表单,它有一个面板,里面有一个打开的表单。
我希望能够从父表单的子表单中读取数据。
private void NewSwitch_Load(object sender, EventArgs e)
{
newChild = new EnterSedol();
newChild.TopLevel = false;
newChild.AutoScroll = true;
panel1.Controls.Add(newChild);
newChild.Show();
}
private void GetValueFromChildButton(object sender, EventArgs e)
{
textBox1.Text = //What here??
}
谢谢