namespace SewingDresses { partial class FormEmployee { /// /// 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() { labelPassword = new Label(); textBoxPassword = new TextBox(); textBoxFullName = new TextBox(); labelFullName = new Label(); textBoxExperience = new TextBox(); labelExperience = new Label(); textBoxQualification = new TextBox(); labelQualification = new Label(); buttonSaveEmployee = new Button(); buttonCancel = new Button(); SuspendLayout(); // // labelPassword // labelPassword.AutoSize = true; labelPassword.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point); labelPassword.Location = new Point(12, 15); labelPassword.Name = "labelPassword"; labelPassword.Size = new Size(95, 25); labelPassword.TabIndex = 0; labelPassword.Text = "Password:"; // // textBoxPassword // textBoxPassword.Location = new Point(183, 17); textBoxPassword.Name = "textBoxPassword"; textBoxPassword.Size = new Size(250, 23); textBoxPassword.TabIndex = 1; // // textBoxFullName // textBoxFullName.Location = new Point(183, 60); textBoxFullName.Name = "textBoxFullName"; textBoxFullName.Size = new Size(250, 23); textBoxFullName.TabIndex = 3; // // labelFullName // labelFullName.AutoSize = true; labelFullName.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point); labelFullName.Location = new Point(12, 58); labelFullName.Name = "labelFullName"; labelFullName.Size = new Size(96, 25); labelFullName.TabIndex = 2; labelFullName.Text = "FullName:"; // // textBoxExperience // textBoxExperience.Location = new Point(183, 106); textBoxExperience.Name = "textBoxExperience"; textBoxExperience.Size = new Size(250, 23); textBoxExperience.TabIndex = 5; // // labelExperience // labelExperience.AutoSize = true; labelExperience.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point); labelExperience.Location = new Point(12, 104); labelExperience.Name = "labelExperience"; labelExperience.Size = new Size(152, 25); labelExperience.TabIndex = 4; labelExperience.Text = "WorkExperience:"; // // textBoxQualification // textBoxQualification.Location = new Point(183, 145); textBoxQualification.Name = "textBoxQualification"; textBoxQualification.Size = new Size(250, 23); textBoxQualification.TabIndex = 7; // // labelQualification // labelQualification.AutoSize = true; labelQualification.Font = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point); labelQualification.Location = new Point(12, 143); labelQualification.Name = "labelQualification"; labelQualification.Size = new Size(124, 25); labelQualification.TabIndex = 6; labelQualification.Text = "Qualification:"; // // buttonSaveEmployee // buttonSaveEmployee.Location = new Point(271, 190); buttonSaveEmployee.Name = "buttonSaveEmployee"; buttonSaveEmployee.Size = new Size(75, 23); buttonSaveEmployee.TabIndex = 8; buttonSaveEmployee.Text = "Save"; buttonSaveEmployee.UseVisualStyleBackColor = true; buttonSaveEmployee.Click += buttonSaveEmployee_Click; // // buttonCancel // buttonCancel.Location = new Point(358, 190); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(75, 23); buttonCancel.TabIndex = 9; buttonCancel.Text = "Cancel"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += buttonCancel_Click; // // FormEmployee // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(456, 216); Controls.Add(buttonCancel); Controls.Add(buttonSaveEmployee); Controls.Add(textBoxQualification); Controls.Add(labelQualification); Controls.Add(textBoxExperience); Controls.Add(labelExperience); Controls.Add(textBoxFullName); Controls.Add(labelFullName); Controls.Add(textBoxPassword); Controls.Add(labelPassword); Name = "FormEmployee"; Text = "Employee"; Load += FormEmployee_Load; ResumeLayout(false); PerformLayout(); } #endregion private Label labelPassword; private TextBox textBoxPassword; private TextBox textBoxFullName; private Label labelFullName; private TextBox textBoxExperience; private Label labelExperience; private TextBox textBoxQualification; private Label labelQualification; private Button buttonSaveEmployee; private Button buttonCancel; } }