private void btnLogin_Click(object sender, RoutedEventArgs e)
 {
     if (txtUserName.Text != "" && txtPassword.Password != "")
     {
         String UserName = txtUserName.Text;
         String Password = txtPassword.Password;
         Login  login    = new Login();
         if (login.LoginFuntion(UserName, Password))
         {
             TableManager windowTableManager = new TableManager(login.accountInfor(UserName, Password));
             this.Hide();
             windowTableManager.ShowDialog();
             this.Show();
         }
         else
         {
             MessageBox.Show("đăng nhập thất bại");
         }
         return;
     }
     else if (txtUserName.Text == "")
     {
         MessageBox.Show("Bạn chưa nhập tên đăng nhập");
     }
     else
     {
         MessageBox.Show("Bạn chưa nhập Password");
     }
 }
Esempio n. 2
0
        private void Window_Closed(object sender, EventArgs e)
        {
            TableManager table = new TableManager();

            table.ShowDialog();
        }