本文介绍了在C#中调用表单并关闭当前表单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好
我想在form1(我的登录表单)按钮中显示form2(我的主表单)按钮点击
我用这个:
hi all
i want to show form2(my main form) in form1(my login form) button click
i used this :
form2 f2=new form2();
this.hide();
f2.show();
这项工作,但是当我关闭form2时,应用程序仍在运行(Form1没有关闭).
我想在form2 show时关闭form1.并在form2关闭时关闭应用程序.
请帮助我
this work but when i close form2 , application Still Running (Form1 is not close).
i want close form1 when form2 show . and application close when form2 it close .
please help me
推荐答案
Form2 form = new Form2();
form.Show();
this.Close();
希望这对您有帮助
Hope this helps
这篇关于在C#中调用表单并关闭当前表单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!