-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAddUserForm.Designer.cs
106 lines (100 loc) · 4.36 KB
/
AddUserForm.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
namespace pctesting
{
partial class AddUserForm
{
/// <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.userNameLabel = new System.Windows.Forms.Label();
this.userNameTextBox = new System.Windows.Forms.TextBox();
this.userPasswordLabel = new System.Windows.Forms.Label();
this.userPasswordTextBox = new System.Windows.Forms.TextBox();
this.saveButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// userNameLabel
//
this.userNameLabel.AutoSize = true;
this.userNameLabel.Location = new System.Drawing.Point(12, 9);
this.userNameLabel.Name = "userNameLabel";
this.userNameLabel.Size = new System.Drawing.Size(135, 17);
this.userNameLabel.TabIndex = 3;
this.userNameLabel.Text = "Имя пользователя:";
//
// userNameTextBox
//
this.userNameTextBox.Location = new System.Drawing.Point(15, 29);
this.userNameTextBox.Name = "userNameTextBox";
this.userNameTextBox.Size = new System.Drawing.Size(251, 22);
this.userNameTextBox.TabIndex = 0;
//
// userPasswordLabel
//
this.userPasswordLabel.AutoSize = true;
this.userPasswordLabel.Location = new System.Drawing.Point(12, 54);
this.userPasswordLabel.Name = "userPasswordLabel";
this.userPasswordLabel.Size = new System.Drawing.Size(61, 17);
this.userPasswordLabel.TabIndex = 4;
this.userPasswordLabel.Text = "Пароль:";
//
// userPasswordTextBox
//
this.userPasswordTextBox.Location = new System.Drawing.Point(15, 74);
this.userPasswordTextBox.Name = "userPasswordTextBox";
this.userPasswordTextBox.PasswordChar = '*';
this.userPasswordTextBox.Size = new System.Drawing.Size(251, 22);
this.userPasswordTextBox.TabIndex = 1;
//
// saveButton
//
this.saveButton.Location = new System.Drawing.Point(166, 118);
this.saveButton.Name = "saveButton";
this.saveButton.Size = new System.Drawing.Size(100, 23);
this.saveButton.TabIndex = 2;
this.saveButton.Text = "Сохранить";
this.saveButton.UseVisualStyleBackColor = true;
this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
//
// AddUserForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(282, 153);
this.Controls.Add(this.saveButton);
this.Controls.Add(this.userPasswordTextBox);
this.Controls.Add(this.userPasswordLabel);
this.Controls.Add(this.userNameTextBox);
this.Controls.Add(this.userNameLabel);
this.Name = "AddUserForm";
this.Text = "Добавление пользователя";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label userNameLabel;
private System.Windows.Forms.TextBox userNameTextBox;
private System.Windows.Forms.Label userPasswordLabel;
private System.Windows.Forms.TextBox userPasswordTextBox;
private System.Windows.Forms.Button saveButton;
}
}