-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPharmacist.cs
More file actions
162 lines (145 loc) · 5.14 KB
/
Pharmacist.cs
File metadata and controls
162 lines (145 loc) · 5.14 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Pharmacy_Management_Sysytem
{
public partial class PharmacistForm : Form
{
public PharmacistForm()
{
InitializeComponent();
}
char currentClickedButton = 'D';
void changeBtnColor(Button button)
{
btnDashboard.BackColor = Color.FromArgb(0, 118, 225);
btnAddMedicine.BackColor = Color.FromArgb(0, 118, 225);
btnViewMedicine.BackColor = Color.FromArgb(0, 118, 225);
btnModifyMedicine.BackColor = Color.FromArgb(0, 118, 225);
btnMedicineValidityCheck.BackColor = Color.FromArgb(0, 118, 225);
btnSellMedicine.BackColor = Color.FromArgb(0, 118, 225);
btnLogOut.BackColor = Color.FromArgb(0, 118, 225);
button.BackColor = Color.Black;
}
void showControls(Button button)
{
ucDashboard.Visible = false;
ucAddMedicine.Visible = false;
ucViewMedicine.Visible = false;
ucModifyMedicine.Visible=false;
ucMedicineValidityCheck.Visible=false;
ucSellMedicine.Visible=false;
if (button.Name == "btnDashboard") {
ucDashboard.Visible = true;
return;
}
if (button.Name == "btnAddMedicine")
{
ucAddMedicine.Visible = true;
return;
}
if(button.Name == "btnViewMedicine")
{
ucViewMedicine.Visible = true;
return;
}
if (button.Name == "btnModifyMedicine")
{
ucModifyMedicine.Visible = true;
return;
}
if (button.Name == "btnMedicineValidityCheck")
{
ucMedicineValidityCheck.Visible = true;
return;
}
if (button.Name == "btnSellMedicine")
{
ucSellMedicine.Visible = true;
return;
}
}
void clickLastClickedButton()
{
switch (currentClickedButton)
{
case 'D':
btnDashboard.PerformClick(); break;
case 'A':
btnAddMedicine.PerformClick(); break;
case 'V':
btnViewMedicine.PerformClick(); break;
case 'F':
btnModifyMedicine.PerformClick(); break;
case 'M':
btnMedicineValidityCheck.PerformClick(); break;
case 'S':
btnSellMedicine.PerformClick(); break;
}
}
private void btnDashboard_Click(object sender, EventArgs e)
{
changeBtnColor((Button)sender);
showControls((Button)sender);
currentClickedButton = 'D';
}
private void btnAddMedicine_Click(object sender, EventArgs e)
{
changeBtnColor((Button)sender);
showControls((Button)sender);
currentClickedButton = 'A';
}
private void btnViewMedicine_Click(object sender, EventArgs e)
{
changeBtnColor((Button)sender);
showControls((Button)sender);
currentClickedButton = 'V';
}
private void btnModifyMedicine_Click(object sender, EventArgs e)
{
changeBtnColor((Button)sender);
showControls((Button)sender);
currentClickedButton = 'F';
}
private void btnMedicineValidityCheck_Click(object sender, EventArgs e)
{
changeBtnColor((Button)sender);
showControls((Button)sender);
currentClickedButton = 'M';
}
private void btnSellMedicine_Click(object sender, EventArgs e)
{
changeBtnColor((Button)sender);
showControls((Button)sender);
currentClickedButton = 'S';
}
private void btnLogOut_Click(object sender, EventArgs e)
{
changeBtnColor((Button)sender);
if (MessageBox.Show("Are you sure?", "Confirm Delete", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button2) == DialogResult.Yes)
{
signInForm signInForm = new signInForm();
signInForm.Show();
this.Hide();
return;
}
btnLogOut.BackColor = Color.Black;
btnLogOut.ForeColor = Color.White;
clickLastClickedButton();
}
private void PharmacistForm_Load(object sender, EventArgs e)
{
ucDashboard.Visible = false;
btnDashboard.PerformClick();
}
private void ucAddMedicine_Load(object sender, EventArgs e)
{
}
}
}