-
Notifications
You must be signed in to change notification settings - Fork 0
/
Login.cs
88 lines (76 loc) · 2.38 KB
/
Login.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
using System;
using System.Linq;
using System.Windows.Forms;
namespace BookShopManager
{
public partial class frmLogin : Form
{
public frmLogin()
{
InitializeComponent();
}
//Khoi tao datacontext LinQ
BookShopDataContext db = new BookShopDataContext();
//Hien Thi Ten Nguoi dung
public static string UserName = "";
//Kiem Tra dang nhap
private void CheckLogin()
{
string username = txtUserName.Text;
string password = txtPassword.Text;
var user = db.UserTbls.SingleOrDefault(u => u.UName == username && u.UPass == password);
var checkAdmin = db.UserTbls.SingleOrDefault(u => u.UName == username && u.UType == true);
if (user != null && checkAdmin == null)
{
UserName = user.UName;
frmBillInfo obj = new frmBillInfo();
obj.Show();
this.Hide();
NotificationHelper.ShowNotification("Login", "Login Successful", ToolTipIcon.Info);
}
else if (checkAdmin != null)
{
frmMain obj = new frmMain();
obj.Show();
this.Hide();
}
else
{
MessageBox.Show("Wrong Username or Password", "Wrong", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
}
private void btnLogin_Click(object sender, EventArgs e)
{
CheckLogin();
}
//Show Form dang nhap admin
private void label3_Click(object sender, EventArgs e)
{
frmLogin obj = new frmLogin();
obj.Show();
this.Hide();
}
//An/ Hien mat khau
private void btnShowPass_Click(object sender, EventArgs e)
{
if (txtPassword.PasswordChar == '\0')
{
txtPassword.PasswordChar = '*';
btnShowPass.ImageIndex = 1;
}
else
{
txtPassword.PasswordChar = '\0';
btnShowPass.ImageIndex = 0;
}
}
private void Login_Load(object sender, EventArgs e)
{
btnShowPass.ImageIndex = 1;
}
private void btnExit_Click(object sender, EventArgs e)
{
Application.Exit();
}
}
}