167 lines
6.9 KiB
C#
167 lines
6.9 KiB
C#
namespace SushiBar
|
|
{
|
|
partial class FormImplementer
|
|
{
|
|
/// <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.textBoxFio = new System.Windows.Forms.TextBox();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.textBoxPassword = new System.Windows.Forms.TextBox();
|
|
this.numericUpDownExp = new System.Windows.Forms.NumericUpDown();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.numericUpDownQul = new System.Windows.Forms.NumericUpDown();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDownExp)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDownQul)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 9);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(25, 15);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "FIO";
|
|
//
|
|
// textBoxFio
|
|
//
|
|
this.textBoxFio.Location = new System.Drawing.Point(43, 6);
|
|
this.textBoxFio.Name = "textBoxFio";
|
|
this.textBoxFio.Size = new System.Drawing.Size(196, 23);
|
|
this.textBoxFio.TabIndex = 1;
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(12, 41);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(57, 15);
|
|
this.label2.TabIndex = 2;
|
|
this.label2.Text = "Password";
|
|
//
|
|
// textBoxPassword
|
|
//
|
|
this.textBoxPassword.Location = new System.Drawing.Point(75, 38);
|
|
this.textBoxPassword.Name = "textBoxPassword";
|
|
this.textBoxPassword.Size = new System.Drawing.Size(164, 23);
|
|
this.textBoxPassword.TabIndex = 3;
|
|
//
|
|
// numericUpDownExp
|
|
//
|
|
this.numericUpDownExp.Location = new System.Drawing.Point(113, 67);
|
|
this.numericUpDownExp.Name = "numericUpDownExp";
|
|
this.numericUpDownExp.Size = new System.Drawing.Size(126, 23);
|
|
this.numericUpDownExp.TabIndex = 4;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(12, 69);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(95, 15);
|
|
this.label3.TabIndex = 5;
|
|
this.label3.Text = "Work Experience";
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.AutoSize = true;
|
|
this.label4.Location = new System.Drawing.Point(12, 98);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(75, 15);
|
|
this.label4.TabIndex = 6;
|
|
this.label4.Text = "Qualification";
|
|
//
|
|
// numericUpDownQul
|
|
//
|
|
this.numericUpDownQul.Location = new System.Drawing.Point(93, 96);
|
|
this.numericUpDownQul.Name = "numericUpDownQul";
|
|
this.numericUpDownQul.Size = new System.Drawing.Size(146, 23);
|
|
this.numericUpDownQul.TabIndex = 7;
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(12, 126);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(114, 23);
|
|
this.buttonSave.TabIndex = 8;
|
|
this.buttonSave.Text = "Save";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(132, 126);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(107, 23);
|
|
this.buttonCancel.TabIndex = 9;
|
|
this.buttonCancel.Text = "Cancel";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// FormImplementer
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(245, 157);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.numericUpDownQul);
|
|
this.Controls.Add(this.label4);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.numericUpDownExp);
|
|
this.Controls.Add(this.textBoxPassword);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.textBoxFio);
|
|
this.Controls.Add(this.label1);
|
|
this.Name = "FormImplementer";
|
|
this.Text = "FormImplementer";
|
|
this.Load += new System.EventHandler(this.FormImplementer_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDownExp)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDownQul)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label label1;
|
|
private TextBox textBoxFio;
|
|
private Label label2;
|
|
private TextBox textBoxPassword;
|
|
private NumericUpDown numericUpDownExp;
|
|
private Label label3;
|
|
private Label label4;
|
|
private NumericUpDown numericUpDownQul;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |