一、我想点击按钮后关闭当前界面跳转到另一界面,但不好用,代码有问题么?
 private void Add_btn_Click(object sender, EventArgs e)
        {
            Add_form frm = new Add_form();
            frm.ShowDialog();
            this.Dispose();
             this.Close();        }