Exemplo n.º 1
0
 private void BtnSignUp_Click(object sender, EventArgs e)
 {
     if (this.Parent.Parent is Landing)
     {
         Console.WriteLine("ok");
         Landing landing = this.Parent.Parent as Landing;
         landing.Contain(landing.GetRegForm());
     }
 }
Exemplo n.º 2
0
 private void BtnBack_Click(object sender, EventArgs e)
 {
     if (this.Parent.Parent is Landing)
     {
         Console.WriteLine("ok");
         Landing landing = this.Parent.Parent as Landing;
         landing.Contain(landing.GetLoginForm());
     }
     else
     {
         ResetSubmission();
     }
 }