主窗体和启动窗体
using System;using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Form2 f2 = new Form2();
f2.Show();
this.Close();
}
}
}
这段代码为什么在按钮click时会关闭整个程序,在百度上搜索了很久也没弄懂,估计这是个很白痴的问题吧,但是这个的确使我迷茫,希望大家能给我解决,拜托了,
我想这个按钮click 的时候能关闭form1,并显示form2