-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEditEmpProfile.Designer.cs
194 lines (189 loc) · 6.59 KB
/
EditEmpProfile.Designer.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
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
namespace EmployeeManagementSystem
{
partial class EditEmpProfile
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditEmpProfile));
button1 = new Button();
username = new Label();
name = new Label();
tbName = new TextBox();
tbUsername = new TextBox();
oldPassword = new TextBox();
label1 = new Label();
newPassword = new TextBox();
label2 = new Label();
comfirmPassword = new TextBox();
label3 = new Label();
apply = new Button();
SuspendLayout();
//
// button1
//
button1.Location = new Point(12, 204);
button1.Name = "button1";
button1.Size = new Size(148, 30);
button1.TabIndex = 7;
button1.Text = "Close";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_Click;
//
// username
//
username.AutoSize = true;
username.Location = new Point(12, 43);
username.Name = "username";
username.Size = new Size(66, 15);
username.TabIndex = 5;
username.Text = "Username: ";
//
// name
//
name.AutoSize = true;
name.Location = new Point(12, 9);
name.Name = "name";
name.Size = new Size(45, 15);
name.TabIndex = 4;
name.Text = "Name: ";
//
// tbName
//
tbName.Location = new Point(126, 5);
tbName.Name = "tbName";
tbName.Size = new Size(199, 23);
tbName.TabIndex = 8;
tbName.TextChanged += tbName_TextChanged;
//
// tbUsername
//
tbUsername.Location = new Point(126, 40);
tbUsername.Name = "tbUsername";
tbUsername.Size = new Size(199, 23);
tbUsername.TabIndex = 9;
tbUsername.TextChanged += tbUsername_TextChanged;
//
// oldPassword
//
oldPassword.Location = new Point(126, 89);
oldPassword.Name = "oldPassword";
oldPassword.Size = new Size(199, 23);
oldPassword.TabIndex = 11;
oldPassword.UseSystemPasswordChar = true;
oldPassword.TextChanged += oldPassword_TextChanged;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 92);
label1.Name = "label1";
label1.Size = new Size(85, 15);
label1.TabIndex = 10;
label1.Text = "Old Password: ";
//
// newPassword
//
newPassword.Location = new Point(126, 122);
newPassword.Name = "newPassword";
newPassword.Size = new Size(199, 23);
newPassword.TabIndex = 13;
newPassword.UseSystemPasswordChar = true;
newPassword.TextChanged += newPassword_TextChanged;
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(12, 125);
label2.Name = "label2";
label2.Size = new Size(90, 15);
label2.TabIndex = 12;
label2.Text = "New Password: ";
//
// comfirmPassword
//
comfirmPassword.Location = new Point(126, 156);
comfirmPassword.Name = "comfirmPassword";
comfirmPassword.Size = new Size(199, 23);
comfirmPassword.TabIndex = 15;
comfirmPassword.UseSystemPasswordChar = true;
comfirmPassword.TextChanged += comfirmPassword_TextChanged;
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(12, 159);
label3.Name = "label3";
label3.Size = new Size(114, 15);
label3.TabIndex = 14;
label3.Text = "Comfirm Password: ";
//
// apply
//
apply.Enabled = false;
apply.Location = new Point(177, 204);
apply.Name = "apply";
apply.Size = new Size(148, 30);
apply.TabIndex = 16;
apply.Text = "Apply";
apply.UseVisualStyleBackColor = true;
apply.Click += apply_Click;
//
// EditEmpProfile
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(337, 246);
Controls.Add(apply);
Controls.Add(comfirmPassword);
Controls.Add(label3);
Controls.Add(newPassword);
Controls.Add(label2);
Controls.Add(oldPassword);
Controls.Add(label1);
Controls.Add(tbUsername);
Controls.Add(tbName);
Controls.Add(button1);
Controls.Add(username);
Controls.Add(name);
Icon = (Icon)resources.GetObject("$this.Icon");
Name = "EditEmpProfile";
Text = "EditEmpProfile";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button button1;
private Label username;
private Label name;
private TextBox tbName;
private TextBox tbUsername;
private TextBox oldPassword;
private Label label1;
private TextBox newPassword;
private Label label2;
private TextBox comfirmPassword;
private Label label3;
private Button apply;
}
}