namespace YourNamespace.Forms { partial class FormPassenger { /// /// 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() { this.labelFirstName = new System.Windows.Forms.Label(); this.labelLastName = new System.Windows.Forms.Label(); this.labelPassportNumber = new System.Windows.Forms.Label(); this.textBoxFirstName = new System.Windows.Forms.TextBox(); this.textBoxLastName = new System.Windows.Forms.TextBox(); this.textBoxPassportNumber = new System.Windows.Forms.TextBox(); this.buttonSave = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); this.SuspendLayout(); // // labelFirstName // this.labelFirstName.AutoSize = true; this.labelFirstName.Location = new System.Drawing.Point(12, 22); this.labelFirstName.Name = "labelFirstName"; this.labelFirstName.Size = new System.Drawing.Size(32, 13); this.labelFirstName.TabIndex = 0; this.labelFirstName.Text = "Имя:"; // // labelLastName // this.labelLastName.AutoSize = true; this.labelLastName.Location = new System.Drawing.Point(12, 58); this.labelLastName.Name = "labelLastName"; this.labelLastName.Size = new System.Drawing.Size(59, 13); this.labelLastName.TabIndex = 1; this.labelLastName.Text = "Фамилия:"; // // labelPassportNumber // this.labelPassportNumber.AutoSize = true; this.labelPassportNumber.Location = new System.Drawing.Point(12, 94); this.labelPassportNumber.Name = "labelPassportNumber"; this.labelPassportNumber.Size = new System.Drawing.Size(93, 13); this.labelPassportNumber.TabIndex = 2; this.labelPassportNumber.Text = "Номер паспорта:"; // // textBoxFirstName // this.textBoxFirstName.Location = new System.Drawing.Point(111, 19); this.textBoxFirstName.Name = "textBoxFirstName"; this.textBoxFirstName.Size = new System.Drawing.Size(200, 20); this.textBoxFirstName.TabIndex = 3; // // textBoxLastName // this.textBoxLastName.Location = new System.Drawing.Point(111, 55); this.textBoxLastName.Name = "textBoxLastName"; this.textBoxLastName.Size = new System.Drawing.Size(200, 20); this.textBoxLastName.TabIndex = 4; // // textBoxPassportNumber // this.textBoxPassportNumber.Location = new System.Drawing.Point(111, 91); this.textBoxPassportNumber.Name = "textBoxPassportNumber"; this.textBoxPassportNumber.Size = new System.Drawing.Size(200, 20); this.textBoxPassportNumber.TabIndex = 5; // // buttonSave // this.buttonSave.Location = new System.Drawing.Point(155, 128); this.buttonSave.Name = "buttonSave"; this.buttonSave.Size = new System.Drawing.Size(75, 23); this.buttonSave.TabIndex = 6; this.buttonSave.Text = "Сохранить"; this.buttonSave.UseVisualStyleBackColor = true; this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click); // // buttonCancel // this.buttonCancel.Location = new System.Drawing.Point(236, 128); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(75, 23); this.buttonCancel.TabIndex = 7; this.buttonCancel.Text = "Отмена"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click); // // FormPassenger // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(324, 166); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonSave); this.Controls.Add(this.textBoxPassportNumber); this.Controls.Add(this.textBoxLastName); this.Controls.Add(this.textBoxFirstName); this.Controls.Add(this.labelPassportNumber); this.Controls.Add(this.labelLastName); this.Controls.Add(this.labelFirstName); this.Name = "FormPassenger"; this.Text = "Редактирование пассажира"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label labelFirstName; private System.Windows.Forms.Label labelLastName; private System.Windows.Forms.Label labelPassportNumber; private System.Windows.Forms.TextBox textBoxFirstName; private System.Windows.Forms.TextBox textBoxLastName; private System.Windows.Forms.TextBox textBoxPassportNumber; private System.Windows.Forms.Button buttonSave; private System.Windows.Forms.Button buttonCancel; } }