namespace ProjectAirline.Forms { partial class FormAirplane { /// /// 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() { label1 = new Label(); label2 = new Label(); label3 = new Label(); textBoxCountry = new TextBox(); textBoxModel = new TextBox(); numericUpDownCapacity = new NumericUpDown(); buttonAdd = new Button(); buttonCancel = new Button(); ((System.ComponentModel.ISupportInitialize)numericUpDownCapacity).BeginInit(); SuspendLayout(); // // label1 // label1.AutoSize = true; label1.Location = new Point(31, 41); label1.Name = "label1"; label1.Size = new Size(61, 20); label1.TabIndex = 0; label1.Text = "Страна:"; // // label2 // label2.AutoSize = true; label2.Location = new Point(31, 106); label2.Name = "label2"; label2.Size = new Size(66, 20); label2.TabIndex = 1; label2.Text = "Модель:"; // // label3 // label3.AutoSize = true; label3.Location = new Point(31, 167); label3.Name = "label3"; label3.Size = new Size(103, 20); label3.TabIndex = 2; label3.Text = "Вместимость:"; // // textBoxCountry // textBoxCountry.Location = new Point(155, 41); textBoxCountry.Name = "textBoxCountry"; textBoxCountry.Size = new Size(150, 27); textBoxCountry.TabIndex = 3; // // textBoxModel // textBoxModel.Location = new Point(155, 99); textBoxModel.Name = "textBoxModel"; textBoxModel.Size = new Size(150, 27); textBoxModel.TabIndex = 4; // // numericUpDownCapacity // numericUpDownCapacity.Location = new Point(155, 165); numericUpDownCapacity.Name = "numericUpDownCapacity"; numericUpDownCapacity.Size = new Size(150, 27); numericUpDownCapacity.TabIndex = 5; // // buttonAdd // buttonAdd.Location = new Point(45, 244); buttonAdd.Name = "buttonAdd"; buttonAdd.Size = new Size(101, 43); buttonAdd.TabIndex = 6; buttonAdd.Text = "Сохранить"; buttonAdd.UseVisualStyleBackColor = true; buttonAdd.Click += ButtonAdd_Click; // // buttonCancel // buttonCancel.Location = new Point(177, 244); buttonCancel.Name = "buttonCancel"; buttonCancel.Size = new Size(100, 43); buttonCancel.TabIndex = 7; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; buttonCancel.Click += ButtonCancel_Click; // // FormAirplane // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(403, 356); Controls.Add(buttonCancel); Controls.Add(buttonAdd); Controls.Add(numericUpDownCapacity); Controls.Add(textBoxModel); Controls.Add(textBoxCountry); Controls.Add(label3); Controls.Add(label2); Controls.Add(label1); Name = "FormAirplane"; StartPosition = FormStartPosition.CenterParent; Text = "Самолёт"; ((System.ComponentModel.ISupportInitialize)numericUpDownCapacity).EndInit(); ResumeLayout(false); PerformLayout(); } #endregion private Label label1; private Label label2; private Label label3; private TextBox textBoxCountry; private TextBox textBoxModel; private NumericUpDown numericUpDownCapacity; private Button buttonAdd; private Button buttonCancel; } }