示例#1
0
        private void btnReg_Click(object sender, EventArgs e)
        {
            RegistStep1Form resStep1Form = new RegistStep1Form("", "", "");

            resStep1Form.TopMost = false;
            resStep1Form.Show();
            this.Close();
        }
示例#2
0
        private void btnBefore_Click(object sender, EventArgs e)
        {
            //去往第二个页面
            //RegistStep2Form registStep2Form = new RegistStep2Form(account);
            //registStep2Form.TopMost = false;
            //registStep2Form.Show();
            //this.Close();

            //去往第一个页面
            RegistStep1Form registStep1Form = new RegistStep1Form(account, mobile, password);

            registStep1Form.TopMost = false;
            registStep1Form.Show();
            this.Close();
        }