111,120
社区成员
发帖
与我相关
我的任务
分享
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void btnOpenForm2_Click(object sender, EventArgs e)
{
Thread t = new Thread(Thread2);
t.Start();
//this.Close();
}
private void Thread2()
{
Application.Run(new Form2());
}
}