LoginForm - set txtUsername.Focus()

This commit is contained in:
DucDangAnh 2020-07-06 17:10:44 +07:00
parent 051ab35337
commit 33eace9899

View File

@ -11,6 +11,7 @@ namespace AIParkingApplication
{ {
InitializeComponent(); InitializeComponent();
pictureBoxImageLogo.Image = new Bitmap(@".\Images\ApplicationLogo.ico"); pictureBoxImageLogo.Image = new Bitmap(@".\Images\ApplicationLogo.ico");
txtUsername.Focus();
lblLoginStatus.Text = string.Empty; lblLoginStatus.Text = string.Empty;
this.AcceptButton = btnLogin; this.AcceptButton = btnLogin;
} }