Esempio n. 1
0
        // Button is used to open the Forgot Credentials window
        private void Button_ForgetPassword_Click(object sender, RoutedEventArgs e)
        {
            ForgotCredentials forgetpassword = new ForgotCredentials(this);

            forgetpassword.Visibility = System.Windows.Visibility.Visible;
            this.Visibility           = System.Windows.Visibility.Hidden;
        }
Esempio n. 2
0
        // This button is used to open the Forgot Credentials window
        private void Button_Forgot_Click(object sender, RoutedEventArgs e)
        {
            ForgotCredentials forgot = new ForgotCredentials(this);

            forgot.Show();
        }
Esempio n. 3
0
 // This button is used to open the Forgot Credentials window
 private void Button_Forgot_Click(object sender, RoutedEventArgs e)
 {
     ForgotCredentials forgot = new ForgotCredentials(this);
     forgot.Show();
 }
Esempio n. 4
0
 // Button is used to open the Forgot Credentials window
 private void Button_ForgetPassword_Click(object sender, RoutedEventArgs e)
 {
     ForgotCredentials forgetpassword = new ForgotCredentials(this);
     forgetpassword.Visibility = System.Windows.Visibility.Visible;
     this.Visibility = System.Windows.Visibility.Hidden;
 }