namespace YourNamespace.Forms { partial class FormAirport { /// /// 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.labelName = new System.Windows.Forms.Label(); this.labelLocation = new System.Windows.Forms.Label(); this.textBoxName = new System.Windows.Forms.TextBox(); this.textBoxLocation = new System.Windows.Forms.TextBox(); this.buttonSave = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); this.SuspendLayout(); // // labelName // this.labelName.AutoSize = true; this.labelName.Location = new System.Drawing.Point(12, 22); this.labelName.Name = "labelName"; this.labelName.Size = new System.Drawing.Size(57, 13); this.labelName.TabIndex = 0; this.labelName.Text = "Название:"; // // labelLocation // this.labelLocation.AutoSize = true; this.labelLocation.Location = new System.Drawing.Point(12, 58); this.labelLocation.Name = "labelLocation"; this.labelLocation.Size = new System.Drawing.Size(48, 13); this.labelLocation.TabIndex = 1; this.labelLocation.Text = "Место:"; // // textBoxName // this.textBoxName.Location = new System.Drawing.Point(111, 19); this.textBoxName.Name = "textBoxName"; this.textBoxName.Size = new System.Drawing.Size(200, 20); this.textBoxName.TabIndex = 2; // // textBoxLocation // this.textBoxLocation.Location = new System.Drawing.Point(111, 55); this.textBoxLocation.Name = "textBoxLocation"; this.textBoxLocation.Size = new System.Drawing.Size(200, 20); this.textBoxLocation.TabIndex = 3; // // buttonSave // this.buttonSave.Location = new System.Drawing.Point(155, 91); this.buttonSave.Name = "buttonSave"; this.buttonSave.Size = new System.Drawing.Size(75, 23); this.buttonSave.TabIndex = 4; 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, 91); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(75, 23); this.buttonCancel.TabIndex = 5; this.buttonCancel.Text = "Отмена"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click); // // FormAirport // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(324, 126); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonSave); this.Controls.Add(this.textBoxLocation); this.Controls.Add(this.textBoxName); this.Controls.Add(this.labelLocation); this.Controls.Add(this.labelName); this.Name = "FormAirport"; this.Text = "Редактирование аэропорта"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label labelName; private System.Windows.Forms.Label labelLocation; private System.Windows.Forms.TextBox textBoxName; private System.Windows.Forms.TextBox textBoxLocation; private System.Windows.Forms.Button buttonSave; private System.Windows.Forms.Button buttonCancel; } }