Example #1
0
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            if ((txtName.Text != "") & (txtPassword.Text != ""))
            {
                var user = new USER();
                user.NAME = txtName.Text;
                user.PASSWORD = txtPassword.Text;
                if (Authentification.AuthentificateUser(user))
                {
                    MainWindowViewModel main = new MainWindowViewModel();
                    MainWindow window = new MainWindow { DataContext = main };
                    window.Show();

                    this.Close();
                }

            }
        }
Example #2
0
        private void Window_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.Key == Key.Return)
            {
                if ((txtName.Text != "") & (txtPassword.Text != ""))
                {
                    var user = new USER();
                    user.NAME = txtName.Text;
                    user.PASSWORD = txtPassword.Text;
                    if (Authentification.AuthentificateUser(user))
                    {
                        MainWindowViewModel main = new MainWindowViewModel();
                        MainWindow window = new MainWindow { DataContext = main };
                        window.Show();

                        this.Close();
                    }

                }
            }
        }