示例#1
0
        private void button1_Click(object sender, EventArgs e)
        {
            this.Hide();
            FormDomain formDomain = new FormDomain();

            formDomain.ShowDialog();
        }
示例#2
0
        private void Login_Click(object sender, EventArgs e)
        {
            //Guide them to the next page if the Pin they entered is valid:
            this.Hide();
            FormDomain formDomain = new FormDomain();

            formDomain.ShowDialog();
        }
示例#3
0
 private void registerFormButton_Click(object sender, EventArgs e)
 {
     if (this.termsCheckBox.Checked)
     {
         //If all the information on the form is filled out with proper values; then allow them to continue onto the main screen.
         //Guide them to the next page if the Pin they entered is valid:
         this.Hide();
         FormDomain formDomain = new FormDomain();
         formDomain.ShowDialog();
     }
 }