本文介绍了从C#中的第一个表单关闭第二个表单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好先生/妈妈
我在c#中创建了2个表单。
我想从c#中的第一种形式关闭第二种形式(不存在)。
下面的代码无效。
2nd_form 2n = new 2nd_form();
2n.close();
请帮忙。
我是什么尝试过:
Hello sir/Mam
I have created 2 forms in c#.
I want to close 2nd form (not existing) from 1st form in c#.
Below code is not working.
2nd_form 2n = new 2nd_form();
2n.close();
Please help.
What I have tried:
Below code is not working.
2nd_form 2n = new 2nd_form();
2n.close();
Please help.
推荐答案
2nd_form 2n = new 2nd_form();
2n.Show();
// Your code here e.g. Thread.Sleep(5000)
// or put a breakpoint on the next line
2n.Close();
这篇关于从C#中的第一个表单关闭第二个表单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!