namespace RestaurantApp { partial class ClientEditForm { 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.lblFirstName = new System.Windows.Forms.Label(); this.txtFirstName = new System.Windows.Forms.TextBox(); this.lblLastName = new System.Windows.Forms.Label(); this.txtLastName = new System.Windows.Forms.TextBox(); 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.lblBirthDate = new System.Windows.Forms.Label(); this.dtpBirthDate = new System.Windows.Forms.DateTimePicker(); this.lblBonusPoints = new System.Windows.Forms.Label(); this.numBonusPoints = new System.Windows.Forms.NumericUpDown(); this.btnSave = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.numBonusPoints)).BeginInit(); this.SuspendLayout(); // // lblFirstName // this.lblFirstName.AutoSize = true; this.lblFirstName.Location = new System.Drawing.Point(30, 30); this.lblFirstName.Name = "lblFirstName"; this.lblFirstName.Size = new System.Drawing.Size(32, 13); this.lblFirstName.TabIndex = 0; this.lblFirstName.Text = "Имя:"; // // txtFirstName // this.txtFirstName.Location = new System.Drawing.Point(120, 27); this.txtFirstName.Name = "txtFirstName"; this.txtFirstName.Size = new System.Drawing.Size(200, 20); this.txtFirstName.TabIndex = 1; // // lblLastName // this.lblLastName.AutoSize = true; this.lblLastName.Location = new System.Drawing.Point(30, 60); this.lblLastName.Name = "lblLastName"; this.lblLastName.Size = new System.Drawing.Size(59, 13); this.lblLastName.TabIndex = 2; this.lblLastName.Text = "Фамилия:"; // // txtLastName // this.txtLastName.Location = new System.Drawing.Point(120, 57); this.txtLastName.Name = "txtLastName"; this.txtLastName.Size = new System.Drawing.Size(200, 20); this.txtLastName.TabIndex = 3; // // lblPhone // this.lblPhone.AutoSize = true; this.lblPhone.Location = new System.Drawing.Point(30, 90); this.lblPhone.Name = "lblPhone"; this.lblPhone.Size = new System.Drawing.Size(55, 13); this.lblPhone.TabIndex = 4; this.lblPhone.Text = "Телефон:"; // // txtPhone // this.txtPhone.Location = new System.Drawing.Point(120, 87); this.txtPhone.Name = "txtPhone"; this.txtPhone.Size = new System.Drawing.Size(200, 20); this.txtPhone.TabIndex = 5; // // lblEmail // this.lblEmail.AutoSize = true; this.lblEmail.Location = new System.Drawing.Point(30, 120); this.lblEmail.Name = "lblEmail"; this.lblEmail.Size = new System.Drawing.Size(35, 13); this.lblEmail.TabIndex = 6; this.lblEmail.Text = "Email:"; // // txtEmail // this.txtEmail.Location = new System.Drawing.Point(120, 117); this.txtEmail.Name = "txtEmail"; this.txtEmail.Size = new System.Drawing.Size(200, 20); this.txtEmail.TabIndex = 7; // // lblBirthDate // this.lblBirthDate.AutoSize = true; this.lblBirthDate.Location = new System.Drawing.Point(30, 150); this.lblBirthDate.Name = "lblBirthDate"; this.lblBirthDate.Size = new System.Drawing.Size(89, 13); this.lblBirthDate.TabIndex = 8; this.lblBirthDate.Text = "Дата рождения:"; // // dtpBirthDate // this.dtpBirthDate.Format = System.Windows.Forms.DateTimePickerFormat.Short; this.dtpBirthDate.Location = new System.Drawing.Point(120, 147); this.dtpBirthDate.Name = "dtpBirthDate"; this.dtpBirthDate.Size = new System.Drawing.Size(200, 20); this.dtpBirthDate.TabIndex = 9; // // lblBonusPoints // this.lblBonusPoints.AutoSize = true; this.lblBonusPoints.Location = new System.Drawing.Point(30, 180); this.lblBonusPoints.Name = "lblBonusPoints"; this.lblBonusPoints.Size = new System.Drawing.Size(48, 13); this.lblBonusPoints.TabIndex = 10; this.lblBonusPoints.Text = "Бонусы:"; // // numBonusPoints // this.numBonusPoints.Location = new System.Drawing.Point(120, 178); this.numBonusPoints.Maximum = new decimal(new int[] { 100000, 0, 0, 0}); this.numBonusPoints.Name = "numBonusPoints"; this.numBonusPoints.Size = new System.Drawing.Size(200, 20); this.numBonusPoints.TabIndex = 11; // // btnSave // this.btnSave.Location = new System.Drawing.Point(120, 220); this.btnSave.Name = "btnSave"; this.btnSave.Size = new System.Drawing.Size(90, 30); this.btnSave.TabIndex = 12; this.btnSave.Text = "Сохранить"; this.btnSave.UseVisualStyleBackColor = true; // // btnCancel // this.btnCancel.Location = new System.Drawing.Point(230, 220); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(90, 30); this.btnCancel.TabIndex = 13; this.btnCancel.Text = "Отмена"; this.btnCancel.UseVisualStyleBackColor = true; // // ClientEditForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(354, 271); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnSave); this.Controls.Add(this.numBonusPoints); this.Controls.Add(this.lblBonusPoints); this.Controls.Add(this.dtpBirthDate); this.Controls.Add(this.lblBirthDate); this.Controls.Add(this.txtEmail); this.Controls.Add(this.lblEmail); this.Controls.Add(this.txtPhone); this.Controls.Add(this.lblPhone); this.Controls.Add(this.txtLastName); this.Controls.Add(this.lblLastName); this.Controls.Add(this.txtFirstName); this.Controls.Add(this.lblFirstName); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ClientEditForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Клиент"; ((System.ComponentModel.ISupportInitialize)(this.numBonusPoints)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } private System.Windows.Forms.Label lblFirstName; private System.Windows.Forms.TextBox txtFirstName; private System.Windows.Forms.Label lblLastName; private System.Windows.Forms.TextBox txtLastName; 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 lblBirthDate; private System.Windows.Forms.DateTimePicker dtpBirthDate; private System.Windows.Forms.Label lblBonusPoints; private System.Windows.Forms.NumericUpDown numBonusPoints; private System.Windows.Forms.Button btnSave; private System.Windows.Forms.Button btnCancel; } }