| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- namespace RestaurantApp
- {
- partial class EmployeeEditForm
- {
- private System.ComponentModel.IContainer components = null;
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- private void InitializeComponent()
- {
- this.lblLastName = new System.Windows.Forms.Label();
- this.txtLastName = new System.Windows.Forms.TextBox();
- this.lblFirstName = new System.Windows.Forms.Label();
- this.txtFirstName = new System.Windows.Forms.TextBox();
- this.lblMiddleName = new System.Windows.Forms.Label();
- this.txtMiddleName = new System.Windows.Forms.TextBox();
- this.lblPosition = new System.Windows.Forms.Label();
- this.cmbPosition = new System.Windows.Forms.ComboBox();
- this.lblPhone = new System.Windows.Forms.Label();
- this.txtPhone = new System.Windows.Forms.TextBox();
- this.lblEmail = new System.Windows.Forms.Label();
- this.txtEmail = new System.Windows.Forms.TextBox();
- this.lblHireDate = new System.Windows.Forms.Label();
- this.dtpHireDate = new System.Windows.Forms.DateTimePicker();
- this.lblSalary = new System.Windows.Forms.Label();
- this.numSalary = new System.Windows.Forms.NumericUpDown();
- this.chkActive = new System.Windows.Forms.CheckBox();
- this.btnSave = new System.Windows.Forms.Button();
- this.btnCancel = new System.Windows.Forms.Button();
- ((System.ComponentModel.ISupportInitialize)(this.numSalary)).BeginInit();
- this.SuspendLayout();
- //
- // lblLastName
- //
- this.lblLastName.AutoSize = true;
- this.lblLastName.Location = new System.Drawing.Point(30, 25);
- this.lblLastName.Name = "lblLastName";
- this.lblLastName.Size = new System.Drawing.Size(59, 13);
- this.lblLastName.TabIndex = 0;
- this.lblLastName.Text = "Фамилия:";
- //
- // txtLastName
- //
- this.txtLastName.Location = new System.Drawing.Point(120, 22);
- this.txtLastName.Name = "txtLastName";
- this.txtLastName.Size = new System.Drawing.Size(250, 20);
- this.txtLastName.TabIndex = 1;
- //
- // lblFirstName
- //
- this.lblFirstName.AutoSize = true;
- this.lblFirstName.Location = new System.Drawing.Point(30, 55);
- this.lblFirstName.Name = "lblFirstName";
- this.lblFirstName.Size = new System.Drawing.Size(32, 13);
- this.lblFirstName.TabIndex = 2;
- this.lblFirstName.Text = "Имя:";
- //
- // txtFirstName
- //
- this.txtFirstName.Location = new System.Drawing.Point(120, 52);
- this.txtFirstName.Name = "txtFirstName";
- this.txtFirstName.Size = new System.Drawing.Size(250, 20);
- this.txtFirstName.TabIndex = 3;
- //
- // lblMiddleName
- //
- this.lblMiddleName.AutoSize = true;
- this.lblMiddleName.Location = new System.Drawing.Point(30, 85);
- this.lblMiddleName.Name = "lblMiddleName";
- this.lblMiddleName.Size = new System.Drawing.Size(57, 13);
- this.lblMiddleName.TabIndex = 4;
- this.lblMiddleName.Text = "Отчество:";
- //
- // txtMiddleName
- //
- this.txtMiddleName.Location = new System.Drawing.Point(120, 82);
- this.txtMiddleName.Name = "txtMiddleName";
- this.txtMiddleName.Size = new System.Drawing.Size(250, 20);
- this.txtMiddleName.TabIndex = 5;
- //
- // lblPosition
- //
- this.lblPosition.AutoSize = true;
- this.lblPosition.Location = new System.Drawing.Point(30, 115);
- this.lblPosition.Name = "lblPosition";
- this.lblPosition.Size = new System.Drawing.Size(68, 13);
- this.lblPosition.TabIndex = 6;
- this.lblPosition.Text = "Должность:";
- //
- // cmbPosition
- //
- this.cmbPosition.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbPosition.Location = new System.Drawing.Point(120, 112);
- this.cmbPosition.Name = "cmbPosition";
- this.cmbPosition.Size = new System.Drawing.Size(250, 21);
- this.cmbPosition.TabIndex = 7;
- //
- // lblPhone
- //
- this.lblPhone.AutoSize = true;
- this.lblPhone.Location = new System.Drawing.Point(30, 145);
- this.lblPhone.Name = "lblPhone";
- this.lblPhone.Size = new System.Drawing.Size(55, 13);
- this.lblPhone.TabIndex = 8;
- this.lblPhone.Text = "Телефон:";
- //
- // txtPhone
- //
- this.txtPhone.Location = new System.Drawing.Point(120, 142);
- this.txtPhone.Name = "txtPhone";
- this.txtPhone.Size = new System.Drawing.Size(250, 20);
- this.txtPhone.TabIndex = 9;
- //
- // lblEmail
- //
- this.lblEmail.AutoSize = true;
- this.lblEmail.Location = new System.Drawing.Point(30, 175);
- this.lblEmail.Name = "lblEmail";
- this.lblEmail.Size = new System.Drawing.Size(35, 13);
- this.lblEmail.TabIndex = 10;
- this.lblEmail.Text = "Email:";
- //
- // txtEmail
- //
- this.txtEmail.Location = new System.Drawing.Point(120, 172);
- this.txtEmail.Name = "txtEmail";
- this.txtEmail.Size = new System.Drawing.Size(250, 20);
- this.txtEmail.TabIndex = 11;
- //
- // lblHireDate
- //
- this.lblHireDate.AutoSize = true;
- this.lblHireDate.Location = new System.Drawing.Point(30, 205);
- this.lblHireDate.Name = "lblHireDate";
- this.lblHireDate.Size = new System.Drawing.Size(77, 13);
- this.lblHireDate.TabIndex = 12;
- this.lblHireDate.Text = "Дата приема:";
- //
- // dtpHireDate
- //
- this.dtpHireDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
- this.dtpHireDate.Location = new System.Drawing.Point(120, 202);
- this.dtpHireDate.Name = "dtpHireDate";
- this.dtpHireDate.Size = new System.Drawing.Size(150, 20);
- this.dtpHireDate.TabIndex = 13;
- //
- // lblSalary
- //
- this.lblSalary.AutoSize = true;
- this.lblSalary.Location = new System.Drawing.Point(30, 235);
- this.lblSalary.Name = "lblSalary";
- this.lblSalary.Size = new System.Drawing.Size(42, 13);
- this.lblSalary.TabIndex = 14;
- this.lblSalary.Text = "Оклад:";
- //
- // numSalary
- //
- this.numSalary.DecimalPlaces = 2;
- this.numSalary.Location = new System.Drawing.Point(120, 233);
- this.numSalary.Maximum = new decimal(new int[] { 1000000, 0, 0, 0 });
- this.numSalary.Name = "numSalary";
- this.numSalary.Size = new System.Drawing.Size(150, 20);
- this.numSalary.TabIndex = 15;
- //
- // chkActive
- //
- this.chkActive.AutoSize = true;
- this.chkActive.Location = new System.Drawing.Point(120, 265);
- this.chkActive.Name = "chkActive";
- this.chkActive.Size = new System.Drawing.Size(80, 17);
- this.chkActive.TabIndex = 16;
- this.chkActive.Text = "Активен";
- this.chkActive.UseVisualStyleBackColor = true;
- //
- // btnSave
- //
- this.btnSave.BackColor = System.Drawing.Color.LimeGreen;
- this.btnSave.Location = new System.Drawing.Point(120, 300);
- this.btnSave.Name = "btnSave";
- this.btnSave.Size = new System.Drawing.Size(100, 30);
- this.btnSave.TabIndex = 17;
- this.btnSave.Text = "Сохранить";
- this.btnSave.UseVisualStyleBackColor = false;
- //
- // btnCancel
- //
- this.btnCancel.Location = new System.Drawing.Point(240, 300);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(100, 30);
- this.btnCancel.TabIndex = 18;
- this.btnCancel.Text = "Отмена";
- this.btnCancel.UseVisualStyleBackColor = true;
- //
- // EmployeeEditForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(420, 360);
- this.Controls.Add(this.btnCancel);
- this.Controls.Add(this.btnSave);
- this.Controls.Add(this.chkActive);
- this.Controls.Add(this.numSalary);
- this.Controls.Add(this.lblSalary);
- this.Controls.Add(this.dtpHireDate);
- this.Controls.Add(this.lblHireDate);
- this.Controls.Add(this.txtEmail);
- this.Controls.Add(this.lblEmail);
- this.Controls.Add(this.txtPhone);
- this.Controls.Add(this.lblPhone);
- this.Controls.Add(this.cmbPosition);
- this.Controls.Add(this.lblPosition);
- this.Controls.Add(this.txtMiddleName);
- this.Controls.Add(this.lblMiddleName);
- this.Controls.Add(this.txtFirstName);
- this.Controls.Add(this.lblFirstName);
- this.Controls.Add(this.txtLastName);
- this.Controls.Add(this.lblLastName);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "EmployeeEditForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "Сотрудник";
- ((System.ComponentModel.ISupportInitialize)(this.numSalary)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- private System.Windows.Forms.Label lblLastName;
- private System.Windows.Forms.TextBox txtLastName;
- private System.Windows.Forms.Label lblFirstName;
- private System.Windows.Forms.TextBox txtFirstName;
- private System.Windows.Forms.Label lblMiddleName;
- private System.Windows.Forms.TextBox txtMiddleName;
- private System.Windows.Forms.Label lblPosition;
- private System.Windows.Forms.ComboBox cmbPosition;
- private System.Windows.Forms.Label lblPhone;
- private System.Windows.Forms.TextBox txtPhone;
- private System.Windows.Forms.Label lblEmail;
- private System.Windows.Forms.TextBox txtEmail;
- private System.Windows.Forms.Label lblHireDate;
- private System.Windows.Forms.DateTimePicker dtpHireDate;
- private System.Windows.Forms.Label lblSalary;
- private System.Windows.Forms.NumericUpDown numSalary;
- private System.Windows.Forms.CheckBox chkActive;
- private System.Windows.Forms.Button btnSave;
- private System.Windows.Forms.Button btnCancel;
- }
- }
|