本文介绍了从打开新表单时关闭或隐藏C#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经部署了一个C#项目,并在其中有多种形式.我想关闭或隐藏Program.cs中指定的第一个窗体.我尝试了此处给出的代码
私有无效btnClose_Click(对象发送者,EventArgs e)
{
形式frmSecond = new frmSecond();
frmSecond.Show();
frmSecond.Activate();
this.Close();
}
它不起作用,它将关闭Form1实体并进入Program.cs,然后再次打开Form1.有什么办法可以隐藏或关闭它吗?
谢谢!!!
解决方案
I hav deveploed a C# project.I hav mutilple form in it. I want to close or hide the first form specified in Program.cs. I hav tried the code given here
private void btnClose_Click(object sender, EventArgs e)
{
Form frmSecond = new frmSecond();
frmSecond.Show();
frmSecond.Activate();
this.Close();
}
It doesnt work it closes Form1 the entres into Program.cs and again opens Form1. Is there any way to just hide or close it??
Thanks!!!
解决方案
这篇关于从打开新表单时关闭或隐藏C#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!