namespace YourNamespace.Forms { partial class FormPlane { /// /// 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.labelModel = new System.Windows.Forms.Label(); this.labelCapacity = new System.Windows.Forms.Label(); this.textBoxModel = new System.Windows.Forms.TextBox(); this.numericUpDownCapacity = new System.Windows.Forms.NumericUpDown(); this.buttonSave = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.numericUpDownCapacity)).BeginInit(); this.SuspendLayout(); // // labelModel // this.labelModel.AutoSize = true; this.labelModel.Location = new System.Drawing.Point(12, 22); this.labelModel.Name = "labelModel"; this.labelModel.Size = new System.Drawing.Size(54, 13); this.labelModel.TabIndex = 0; this.labelModel.Text = "Модель:"; // // labelCapacity // this.labelCapacity.AutoSize = true; this.labelCapacity.Location = new System.Drawing.Point(12, 58); this.labelCapacity.Name = "labelCapacity"; this.labelCapacity.Size = new System.Drawing.Size(72, 13); this.labelCapacity.TabIndex = 1; this.labelCapacity.Text = "Вместимость:"; // // textBoxModel // this.textBoxModel.Location = new System.Drawing.Point(111, 19); this.textBoxModel.Name = "textBoxModel"; this.textBoxModel.Size = new System.Drawing.Size(200, 20); this.textBoxModel.TabIndex = 2; // // numericUpDownCapacity // this.numericUpDownCapacity.Location = new System.Drawing.Point(111, 56); this.numericUpDownCapacity.Name = "numericUpDownCapacity"; this.numericUpDownCapacity.Size = new System.Drawing.Size(200, 20); this.numericUpDownCapacity.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); // // FormPlane // 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.numericUpDownCapacity); this.Controls.Add(this.textBoxModel); this.Controls.Add(this.labelCapacity); this.Controls.Add(this.labelModel); this.Name = "FormPlane"; this.Text = "Редактирование самолета"; ((System.ComponentModel.ISupportInitialize)(this.numericUpDownCapacity)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label labelModel; private System.Windows.Forms.Label labelCapacity; private System.Windows.Forms.TextBox textBoxModel; private System.Windows.Forms.NumericUpDown numericUpDownCapacity; private System.Windows.Forms.Button buttonSave; private System.Windows.Forms.Button buttonCancel; } }