Exemple #1
0
        private void competedButton_Click(object sender, EventArgs e)
        {
            Form authorizationForm = new AuthorizationForm();

            Hide();
            authorizationForm.Show();
        }
Exemple #2
0
 internal YApplication()
 {
     _authorizationForm = new AuthorizationForm
     {
         OnAuthorize = OnAuthorize,
         OnClose     = Close
     };
     _authorizationForm.Show();
 }