namespace Forum
{
partial class FormUser
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.textBoxUsername = new System.Windows.Forms.TextBox();
this.textBoxLogin = new System.Windows.Forms.TextBox();
this.textBoxPassword = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.buttonSave = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.comboBoxSelectRole = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label();
this.buttonAddUsers = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// textBoxUsername
//
this.textBoxUsername.Location = new System.Drawing.Point(80, 9);
this.textBoxUsername.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.textBoxUsername.Name = "textBoxUsername";
this.textBoxUsername.Size = new System.Drawing.Size(133, 23);
this.textBoxUsername.TabIndex = 0;
//
// textBoxLogin
//
this.textBoxLogin.Location = new System.Drawing.Point(80, 34);
this.textBoxLogin.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.textBoxLogin.Name = "textBoxLogin";
this.textBoxLogin.Size = new System.Drawing.Size(133, 23);
this.textBoxLogin.TabIndex = 1;
//
// textBoxPassword
//
this.textBoxPassword.Location = new System.Drawing.Point(80, 58);
this.textBoxPassword.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.textBoxPassword.Name = "textBoxPassword";
this.textBoxPassword.Size = new System.Drawing.Size(133, 23);
this.textBoxPassword.TabIndex = 2;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(10, 14);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(60, 15);
this.label1.TabIndex = 3;
this.label1.Text = "Username";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(10, 39);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(37, 15);
this.label2.TabIndex = 4;
this.label2.Text = "Login";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(10, 64);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(57, 15);
this.label3.TabIndex = 5;
this.label3.Text = "Password";
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(219, 11);
this.buttonSave.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(82, 22);
this.buttonSave.TabIndex = 6;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(219, 37);
this.buttonCancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(82, 22);
this.buttonCancel.TabIndex = 7;
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// comboBoxSelectRole
//
this.comboBoxSelectRole.FormattingEnabled = true;
this.comboBoxSelectRole.Location = new System.Drawing.Point(80, 88);
this.comboBoxSelectRole.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.comboBoxSelectRole.Name = "comboBoxSelectRole";
this.comboBoxSelectRole.Size = new System.Drawing.Size(133, 23);
this.comboBoxSelectRole.TabIndex = 8;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(10, 90);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(30, 15);
this.label4.TabIndex = 9;
this.label4.Text = "Role";
//
// buttonAddUsers
//
this.buttonAddUsers.Location = new System.Drawing.Point(219, 64);
this.buttonAddUsers.Name = "buttonAddUsers";
this.buttonAddUsers.Size = new System.Drawing.Size(82, 77);
this.buttonAddUsers.TabIndex = 10;
this.buttonAddUsers.Text = "Добавить 1000 пользователей";
this.buttonAddUsers.UseVisualStyleBackColor = true;
this.buttonAddUsers.Click += new System.EventHandler(this.buttonAddUsers_Click);
//
// FormUser
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(310, 145);
this.Controls.Add(this.buttonAddUsers);
this.Controls.Add(this.label4);
this.Controls.Add(this.comboBoxSelectRole);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.textBoxPassword);
this.Controls.Add(this.textBoxLogin);
this.Controls.Add(this.textBoxUsername);
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.Name = "FormUser";
this.Text = "Пользователь";
this.Load += new System.EventHandler(this.FormUser_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TextBox textBoxUsername;
private TextBox textBoxLogin;
private TextBox textBoxPassword;
private Label label1;
private Label label2;
private Label label3;
private Button buttonSave;
private Button buttonCancel;
private ComboBox comboBoxSelectRole;
private Label label4;
private Button buttonAddUsers;
}
}