111,097
社区成员




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());
}
}