コード例 #1
0
ファイル: DialogLogin.xaml.cs プロジェクト: jameshuang-i/test
 private void btnLogin_Click(object sender, RoutedEventArgs e)
 {
     if (!Data.User.Vaild(comboxUserName.Text, textPassword.Password))
     {
         labMessage.Content = Data.User.GetLastErr;
         textPassword.Focus();
         textPassword.Background = new SolidColorBrush(Colors.Red);
         return;
     }
   
     WindowMain objMain = new WindowMain();
     objMain.Show();
     this.Close(); 
 }
コード例 #2
0
ファイル: DialogLogin.xaml.cs プロジェクト: jameshuang-i/test
        private void btnLogin_Click(object sender, RoutedEventArgs e)
        {
            if (!Data.User.Vaild(comboxUserName.Text, textPassword.Password))
            {
                labMessage.Content = Data.User.GetLastErr;
                textPassword.Focus();
                textPassword.Background = new SolidColorBrush(Colors.Red);
                return;
            }

            WindowMain objMain = new WindowMain();

            objMain.Show();
            this.Close();
        }