程序主窗体为Form1类,又在项目中新增了一个窗体Form2类
在Form1窗口上放置一个Button按钮  要求单击按钮弹出Form2窗口
我在    private void addButton_Click(object sender, EventArgs e)
        {
            this.Show(new Form2());
            /* 或是Application.Run(new Form2()); */
            /* 或是  new Form2(); */
        }
以上都不能单击弹出窗口   请问该怎么办?