-
Notifications
You must be signed in to change notification settings - Fork 534
/
CheckPassword.Designer.cs
143 lines (137 loc) · 6.78 KB
/
CheckPassword.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
namespace iSpyApplication
{
partial class CheckPassword
{
/// <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(CheckPassword));
this.txtPassword = new System.Windows.Forms.TextBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.lblAccount = new System.Windows.Forms.Label();
this.lblPassword = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.ddlAccount = new System.Windows.Forms.ComboBox();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// txtPassword
//
this.txtPassword.Location = new System.Drawing.Point(65, 34);
this.txtPassword.Name = "txtPassword";
this.txtPassword.Size = new System.Drawing.Size(119, 20);
this.txtPassword.TabIndex = 1;
this.txtPassword.UseSystemPasswordChar = true;
this.txtPassword.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TxtPasswordKeyDown);
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 2;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.Controls.Add(this.lblAccount, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.lblPassword, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.txtPassword, 1, 1);
this.tableLayoutPanel1.Controls.Add(this.button1, 1, 2);
this.tableLayoutPanel1.Controls.Add(this.ddlAccount, 1, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(6, 6);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 3;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 31F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(251, 116);
this.tableLayoutPanel1.TabIndex = 3;
//
// lblAccount
//
this.lblAccount.AutoSize = true;
this.lblAccount.Location = new System.Drawing.Point(3, 6);
this.lblAccount.Margin = new System.Windows.Forms.Padding(3, 6, 3, 0);
this.lblAccount.Name = "lblAccount";
this.lblAccount.Size = new System.Drawing.Size(47, 13);
this.lblAccount.TabIndex = 7;
this.lblAccount.Text = "Account";
//
// lblPassword
//
this.lblPassword.AutoSize = true;
this.lblPassword.Location = new System.Drawing.Point(3, 37);
this.lblPassword.Margin = new System.Windows.Forms.Padding(3, 6, 3, 0);
this.lblPassword.Name = "lblPassword";
this.lblPassword.Size = new System.Drawing.Size(56, 13);
this.lblPassword.TabIndex = 5;
this.lblPassword.Text = "Password:";
//
// button1
//
this.button1.AutoSize = true;
this.button1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.button1.Location = new System.Drawing.Point(65, 65);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(51, 23);
this.button1.TabIndex = 6;
this.button1.Text = "Unlock";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// ddlAccount
//
this.ddlAccount.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.ddlAccount.FormattingEnabled = true;
this.ddlAccount.Location = new System.Drawing.Point(65, 3);
this.ddlAccount.Name = "ddlAccount";
this.ddlAccount.Size = new System.Drawing.Size(121, 21);
this.ddlAccount.TabIndex = 8;
//
// CheckPassword
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(263, 128);
this.Controls.Add(this.tableLayoutPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "CheckPassword";
this.Padding = new System.Windows.Forms.Padding(6);
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Application has been locked.";
this.TopMost = true;
this.Load += new System.EventHandler(this.CheckPasswordLoad);
this.Shown += new System.EventHandler(this.CheckPassword_Shown);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox txtPassword;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.Label lblAccount;
private System.Windows.Forms.Label lblPassword;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.ComboBox ddlAccount;
}
}