122 lines
5.5 KiB
C#
122 lines
5.5 KiB
C#
namespace Airbus_Base
|
|
{
|
|
partial class FormAirplaneCollection
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.pictureBoxCollection = new System.Windows.Forms.PictureBox();
|
|
this.ButtonAddAirplane = new System.Windows.Forms.Button();
|
|
this.ButtonDeleteAirplane = new System.Windows.Forms.Button();
|
|
this.maskedTextBoxNumber = new System.Windows.Forms.MaskedTextBox();
|
|
this.ButtonRefreshCollection = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxCollection)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// pictureBoxCollection
|
|
//
|
|
this.pictureBoxCollection.Location = new System.Drawing.Point(1, -2);
|
|
this.pictureBoxCollection.Name = "pictureBoxCollection";
|
|
this.pictureBoxCollection.Size = new System.Drawing.Size(676, 451);
|
|
this.pictureBoxCollection.TabIndex = 0;
|
|
this.pictureBoxCollection.TabStop = false;
|
|
//
|
|
// ButtonAddAirplane
|
|
//
|
|
this.ButtonAddAirplane.Location = new System.Drawing.Point(750, 77);
|
|
this.ButtonAddAirplane.Name = "ButtonAddAirplane";
|
|
this.ButtonAddAirplane.Size = new System.Drawing.Size(103, 49);
|
|
this.ButtonAddAirplane.TabIndex = 1;
|
|
this.ButtonAddAirplane.Text = "Добавить объект";
|
|
this.ButtonAddAirplane.UseVisualStyleBackColor = true;
|
|
this.ButtonAddAirplane.Click += new System.EventHandler(this.ButtonAddAirplane_Click);
|
|
//
|
|
// ButtonDeleteAirplane
|
|
//
|
|
this.ButtonDeleteAirplane.Location = new System.Drawing.Point(750, 212);
|
|
this.ButtonDeleteAirplane.Name = "ButtonDeleteAirplane";
|
|
this.ButtonDeleteAirplane.Size = new System.Drawing.Size(103, 55);
|
|
this.ButtonDeleteAirplane.TabIndex = 2;
|
|
this.ButtonDeleteAirplane.Text = "Удалить объект";
|
|
this.ButtonDeleteAirplane.UseVisualStyleBackColor = true;
|
|
this.ButtonDeleteAirplane.Click += new System.EventHandler(this.ButtonDeleteAirplane_Click);
|
|
//
|
|
// maskedTextBoxNumber
|
|
//
|
|
this.maskedTextBoxNumber.Location = new System.Drawing.Point(750, 154);
|
|
this.maskedTextBoxNumber.Name = "maskedTextBoxNumber";
|
|
this.maskedTextBoxNumber.Size = new System.Drawing.Size(103, 27);
|
|
this.maskedTextBoxNumber.TabIndex = 3;
|
|
//
|
|
// ButtonRefreshCollection
|
|
//
|
|
this.ButtonRefreshCollection.Location = new System.Drawing.Point(750, 299);
|
|
this.ButtonRefreshCollection.Name = "ButtonRefreshCollection";
|
|
this.ButtonRefreshCollection.Size = new System.Drawing.Size(103, 56);
|
|
this.ButtonRefreshCollection.TabIndex = 4;
|
|
this.ButtonRefreshCollection.Text = "Обновить коллекцию";
|
|
this.ButtonRefreshCollection.UseVisualStyleBackColor = true;
|
|
this.ButtonRefreshCollection.Click += new System.EventHandler(this.ButtonRefreshCollection_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(750, 31);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(103, 20);
|
|
this.label1.TabIndex = 5;
|
|
this.label1.Text = "Инструменты";
|
|
//
|
|
// FormAirplaneCollection
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(900, 450);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.ButtonRefreshCollection);
|
|
this.Controls.Add(this.maskedTextBoxNumber);
|
|
this.Controls.Add(this.ButtonDeleteAirplane);
|
|
this.Controls.Add(this.ButtonAddAirplane);
|
|
this.Controls.Add(this.pictureBoxCollection);
|
|
this.Name = "FormAirplaneCollection";
|
|
this.Text = "FormAirplaneCollection";
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBoxCollection)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private PictureBox pictureBoxCollection;
|
|
private Button ButtonAddAirplane;
|
|
private Button ButtonDeleteAirplane;
|
|
private MaskedTextBox maskedTextBoxNumber;
|
|
private Button ButtonRefreshCollection;
|
|
private Label label1;
|
|
}
|
|
} |