PIbd-21_RazubaevSM_SUBD_Labs/SYBDView/FormWorker.Designer.cs

149 lines
6.4 KiB
C#

namespace SYBDView
{
partial class FormWorker
{
/// <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.textBoxAddress = new System.Windows.Forms.TextBox();
this.labelAddress = new System.Windows.Forms.Label();
this.textBoxFullname = new System.Windows.Forms.TextBox();
this.labelName = new System.Windows.Forms.Label();
this.buttonCancel = new System.Windows.Forms.Button();
this.buttonSave = new System.Windows.Forms.Button();
this.labelSalary = new System.Windows.Forms.Label();
this.textBoxSalary = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// textBoxAddress
//
this.textBoxAddress.Location = new System.Drawing.Point(126, 64);
this.textBoxAddress.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.textBoxAddress.Name = "textBoxAddress";
this.textBoxAddress.Size = new System.Drawing.Size(358, 31);
this.textBoxAddress.TabIndex = 10;
//
// labelAddress
//
this.labelAddress.AutoSize = true;
this.labelAddress.Location = new System.Drawing.Point(15, 69);
this.labelAddress.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
this.labelAddress.Name = "labelAddress";
this.labelAddress.Size = new System.Drawing.Size(66, 25);
this.labelAddress.TabIndex = 9;
this.labelAddress.Text = "Адрес:";
//
// textBoxFullname
//
this.textBoxFullname.Location = new System.Drawing.Point(126, 14);
this.textBoxFullname.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.textBoxFullname.Name = "textBoxFullname";
this.textBoxFullname.Size = new System.Drawing.Size(358, 31);
this.textBoxFullname.TabIndex = 8;
//
// labelName
//
this.labelName.AutoSize = true;
this.labelName.Location = new System.Drawing.Point(15, 19);
this.labelName.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
this.labelName.Name = "labelName";
this.labelName.Size = new System.Drawing.Size(56, 25);
this.labelName.TabIndex = 7;
this.labelName.Text = "ФИО:";
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(459, 219);
this.buttonCancel.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(126, 45);
this.buttonCancel.TabIndex = 13;
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(330, 219);
this.buttonSave.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(126, 45);
this.buttonSave.TabIndex = 12;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
//
// labelSalary
//
this.labelSalary.AutoSize = true;
this.labelSalary.Location = new System.Drawing.Point(15, 118);
this.labelSalary.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
this.labelSalary.Name = "labelSalary";
this.labelSalary.Size = new System.Drawing.Size(90, 25);
this.labelSalary.TabIndex = 14;
this.labelSalary.Text = "Зарплата:";
//
// textBoxSalary
//
this.textBoxSalary.Location = new System.Drawing.Point(126, 118);
this.textBoxSalary.Margin = new System.Windows.Forms.Padding(6, 5, 6, 5);
this.textBoxSalary.Name = "textBoxSalary";
this.textBoxSalary.Size = new System.Drawing.Size(227, 31);
this.textBoxSalary.TabIndex = 15;
//
// FormWorker
//
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(591, 267);
this.Controls.Add(this.textBoxSalary);
this.Controls.Add(this.labelSalary);
this.Controls.Add(this.textBoxAddress);
this.Controls.Add(this.labelAddress);
this.Controls.Add(this.textBoxFullname);
this.Controls.Add(this.labelName);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonSave);
this.Name = "FormWorker";
this.Text = "Работник";
this.Load += new System.EventHandler(this.FormWork_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TextBox textBoxAddress;
private Label labelAddress;
private TextBox textBoxFullname;
private Label labelName;
private Button buttonCancel;
private Button buttonSave;
private Label labelSalary;
private TextBox textBoxSalary;
}
}