-
Notifications
You must be signed in to change notification settings - Fork 0
/
Settings.Designer.cs
165 lines (159 loc) · 7.51 KB
/
Settings.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
namespace FileEncryption
{
partial class Settings
{
/// <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.label1 = new System.Windows.Forms.Label();
this.newPass = new System.Windows.Forms.TextBox();
this.delete = new System.Windows.Forms.Button();
this.confirmPass = new System.Windows.Forms.TextBox();
this.changes = new System.Windows.Forms.Label();
this.create = new System.Windows.Forms.Button();
this.newUsername = new System.Windows.Forms.TextBox();
this.accessLevel = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(142, 20);
this.label1.TabIndex = 0;
this.label1.Text = "Access manager";
//
// newPass
//
this.newPass.ForeColor = System.Drawing.Color.Gray;
this.newPass.Location = new System.Drawing.Point(16, 84);
this.newPass.Name = "newPass";
this.newPass.Size = new System.Drawing.Size(100, 20);
this.newPass.TabIndex = 2;
this.newPass.Text = "New password...";
//
// delete
//
this.delete.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.delete.ForeColor = System.Drawing.Color.Firebrick;
this.delete.Location = new System.Drawing.Point(136, 32);
this.delete.Name = "delete";
this.delete.Size = new System.Drawing.Size(136, 31);
this.delete.TabIndex = 4;
this.delete.Text = "Delete current";
this.delete.UseVisualStyleBackColor = true;
this.delete.Click += new System.EventHandler(this.delete_Click);
//
// confirmPass
//
this.confirmPass.ForeColor = System.Drawing.Color.Gray;
this.confirmPass.Location = new System.Drawing.Point(16, 110);
this.confirmPass.Name = "confirmPass";
this.confirmPass.Size = new System.Drawing.Size(100, 20);
this.confirmPass.TabIndex = 5;
this.confirmPass.Text = "Confirm password...";
//
// changes
//
this.changes.AutoSize = true;
this.changes.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.changes.ForeColor = System.Drawing.Color.Green;
this.changes.Location = new System.Drawing.Point(130, 236);
this.changes.Name = "changes";
this.changes.Size = new System.Drawing.Size(142, 16);
this.changes.TabIndex = 6;
this.changes.Text = "Changes accepted.";
//
// create
//
this.create.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.create.ForeColor = System.Drawing.Color.Teal;
this.create.Location = new System.Drawing.Point(136, 69);
this.create.Name = "create";
this.create.Size = new System.Drawing.Size(136, 31);
this.create.TabIndex = 7;
this.create.Text = "Create new";
this.create.UseVisualStyleBackColor = true;
this.create.Click += new System.EventHandler(this.create_Click);
//
// newUsername
//
this.newUsername.ForeColor = System.Drawing.Color.Gray;
this.newUsername.Location = new System.Drawing.Point(16, 32);
this.newUsername.Name = "newUsername";
this.newUsername.Size = new System.Drawing.Size(100, 20);
this.newUsername.TabIndex = 8;
this.newUsername.Text = "New username...";
//
// accessLevel
//
this.accessLevel.DisplayMember = "Access level...";
this.accessLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.accessLevel.ForeColor = System.Drawing.Color.Gray;
this.accessLevel.FormattingEnabled = true;
this.accessLevel.Items.AddRange(new object[] {
"admin",
"manager"});
this.accessLevel.Location = new System.Drawing.Point(16, 58);
this.accessLevel.Name = "accessLevel";
this.accessLevel.Size = new System.Drawing.Size(100, 21);
this.accessLevel.TabIndex = 9;
//
// Settings
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 261);
this.Controls.Add(this.accessLevel);
this.Controls.Add(this.newUsername);
this.Controls.Add(this.create);
this.Controls.Add(this.changes);
this.Controls.Add(this.confirmPass);
this.Controls.Add(this.delete);
this.Controls.Add(this.newPass);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Settings";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Settings";
this.Load += new System.EventHandler(this.Settings_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox newPass;
private System.Windows.Forms.Button delete;
private System.Windows.Forms.TextBox confirmPass;
private System.Windows.Forms.Label changes;
private System.Windows.Forms.Button create;
private System.Windows.Forms.TextBox newUsername;
private System.Windows.Forms.ComboBox accessLevel;
}
}