哦,这样啊,那好办了.我知道2种方法,
1是在显示窗体的时候不使用ShowDailog()而是使用Show(),就可以对主窗体和新窗体都进行操作了.
2是在显示窗体时使用线程,这样即使用ShowDialog()也可以对两个窗体进程操作了.
private void button1_Click(object sender, System.EventArgs e)
{
System.Threading.Thread th=new System.Threading.Thread(new System.Threading.ThreadStart(this.showwindow));
th.Start();
}
private void showwindow()
{
Form2 frm=new Form2();
frm.ShowDialog();
}
这段代码是方法2的代码,我使用是好使的