Winform处理

时间:2013-05-21 08:53:55

标签: c# .net forms visibility

我有3个表格。 我们可以通过form1进入form2。(然后form1将消失。) 当我们关闭form2时,form1将重新出现。 同样,我们可以通过form2输入form3。(然后form2将消失。) 当我们关闭form3时,form2应该重新出现。(这是我失败的部分。)

当我关闭form3时,出现的表单是form1而不是form2。 (必须重新出现相同的实例。'不允许创建表单的新对象并使其显示')

请帮忙。

form1中的

代码:

        this.ShowInTaskbar = false;
        this.Visible = false;
        Form2 f2 = new Form2();
        f2.ShowDialog();
        this.Visible = true;
        this.ShowInTaskbar = true;

form2中的代码:

        this.Visible = false;
        this.ShowInTaskbar = false;
        Form3 f3 = new Form3();
        f3.ShowDialog();
        this.Visible = true;
        this.ShowInTaskbar = true;

1 个答案:

答案 0 :(得分:1)

不确定,但请尝试将form2的父级设为form1:

form2.Parent=form1;

f2.ShowDialog(form1);