首页上一页 1 下一页尾页 3 条记录 1/1页
将两个窗体进行切换的时候,为什么都会有新的窗体产生?
发表在C#图书答疑
2016-06-02
是否精华
是
否
版块置顶:
是
否
我用C#windows应用设计了两个窗体在一个工程中,为什么在通过A窗体调用B窗体的时候,会有新的B窗体产生,B窗体调用A窗体的时候,有新的A窗体产生。我想实现窗体切换的时候,不产生新的窗体,原窗体上的数据还能保留。我参考的代码如下:
this.Visible = false;
deviceform dform = new deviceform();
dform.Visible=true;
testform tform= new testform();
tform.Show();
this.Visible=false;
this.Visible = false;
deviceform dform = new deviceform();
dform.Visible=true;
testform tform= new testform();
tform.Show();
this.Visible=false;