-
Notifications
You must be signed in to change notification settings - Fork 0
/
Password.Designer.cs
147 lines (141 loc) · 6.07 KB
/
Password.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
namespace LMSWarehouse
{
partial class FrmPassword
{
/// <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()
{
this.lblUser = new System.Windows.Forms.Label();
this.txtUserName = new System.Windows.Forms.TextBox();
this.lblPassword = new System.Windows.Forms.Label();
this.txtPassword = new System.Windows.Forms.TextBox();
this.BtnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.cbWarehouse = new System.Windows.Forms.ComboBox();
this.lblWarehouse = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// lblUser
//
this.lblUser.AutoSize = true;
this.lblUser.Location = new System.Drawing.Point(54, 38);
this.lblUser.Name = "lblUser";
this.lblUser.Size = new System.Drawing.Size(57, 13);
this.lblUser.TabIndex = 0;
this.lblUser.Text = "UserName";
//
// txtUserName
//
this.txtUserName.Location = new System.Drawing.Point(138, 38);
this.txtUserName.Name = "txtUserName";
this.txtUserName.Size = new System.Drawing.Size(171, 20);
this.txtUserName.TabIndex = 1;
//
// lblPassword
//
this.lblPassword.AutoSize = true;
this.lblPassword.Location = new System.Drawing.Point(54, 82);
this.lblPassword.Name = "lblPassword";
this.lblPassword.Size = new System.Drawing.Size(53, 13);
this.lblPassword.TabIndex = 2;
this.lblPassword.Text = "Password";
//
// txtPassword
//
this.txtPassword.Location = new System.Drawing.Point(138, 79);
this.txtPassword.Name = "txtPassword";
this.txtPassword.PasswordChar = '*';
this.txtPassword.Size = new System.Drawing.Size(171, 20);
this.txtPassword.TabIndex = 3;
this.txtPassword.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtPassword_KeyUp);
//
// BtnOK
//
this.BtnOK.Location = new System.Drawing.Point(84, 145);
this.BtnOK.Name = "BtnOK";
this.BtnOK.Size = new System.Drawing.Size(75, 23);
this.BtnOK.TabIndex = 4;
this.BtnOK.Text = "OK";
this.BtnOK.UseVisualStyleBackColor = true;
this.BtnOK.Click += new System.EventHandler(this.BtnOK_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(216, 145);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// cbWarehouse
//
this.cbWarehouse.FormattingEnabled = true;
this.cbWarehouse.Location = new System.Drawing.Point(138, 118);
this.cbWarehouse.Name = "cbWarehouse";
this.cbWarehouse.Size = new System.Drawing.Size(171, 21);
this.cbWarehouse.TabIndex = 6;
this.cbWarehouse.Visible = false;
this.cbWarehouse.DropDownClosed += new System.EventHandler(this.cbWarehouse_DropDownClosed);
//
// lblWarehouse
//
this.lblWarehouse.AutoSize = true;
this.lblWarehouse.Location = new System.Drawing.Point(46, 118);
this.lblWarehouse.Name = "lblWarehouse";
this.lblWarehouse.Size = new System.Drawing.Size(65, 13);
this.lblWarehouse.TabIndex = 7;
this.lblWarehouse.Text = "Warehouse ";
this.lblWarehouse.Visible = false;
//
// FrmPassword
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(372, 212);
this.Controls.Add(this.lblWarehouse);
this.Controls.Add(this.cbWarehouse);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.BtnOK);
this.Controls.Add(this.txtPassword);
this.Controls.Add(this.lblPassword);
this.Controls.Add(this.txtUserName);
this.Controls.Add(this.lblUser);
this.Name = "FrmPassword";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Please enter password";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblUser;
private System.Windows.Forms.TextBox txtUserName;
private System.Windows.Forms.Label lblPassword;
private System.Windows.Forms.TextBox txtPassword;
private System.Windows.Forms.Button BtnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.ComboBox cbWarehouse;
private System.Windows.Forms.Label lblWarehouse;
}
}