PIbd-22_Isaeva_A.I._Airbus_.../Airbus/FormAirbusCollection.Designer.cs

197 lines
8.2 KiB
C#
Raw Normal View History

2023-11-18 10:47:46 +04:00
namespace ProjectAirbus
{
partial class FormAirbusCollection
{
/// <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()
{
2023-11-18 12:13:53 +04:00
buttonAddAirbus = new Button();
pictureBoxCollection = new PictureBox();
labelInstruments = new Label();
buttonUpdate = new Button();
buttonDeleteAirbus = new Button();
colorDialog = new ColorDialog();
maskedTextBoxNumber = new MaskedTextBox();
label1 = new Label();
listBoxStorages = new ListBox();
buttonAddStorage = new Button();
buttonDeleteStorage = new Button();
textBoxStorageName = new TextBox();
2023-11-18 10:47:46 +04:00
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit();
SuspendLayout();
//
2023-11-18 12:13:53 +04:00
// buttonAddAirbus
2023-11-18 10:47:46 +04:00
//
2023-11-18 12:13:53 +04:00
buttonAddAirbus.Anchor = AnchorStyles.Top | AnchorStyles.Right;
buttonAddAirbus.Location = new Point(572, 332);
buttonAddAirbus.Name = "buttonAddAirbus";
buttonAddAirbus.Size = new Size(137, 28);
buttonAddAirbus.TabIndex = 0;
buttonAddAirbus.Text = "Добавить самолёт";
buttonAddAirbus.UseVisualStyleBackColor = true;
buttonAddAirbus.Click += buttonAddAirbus_Click;
2023-11-18 10:47:46 +04:00
//
// pictureBoxCollection
//
2023-11-18 12:13:53 +04:00
pictureBoxCollection.Location = new Point(0, 0);
pictureBoxCollection.Name = "pictureBoxCollection";
pictureBoxCollection.Size = new Size(552, 436);
pictureBoxCollection.TabIndex = 1;
pictureBoxCollection.TabStop = false;
2023-11-18 10:47:46 +04:00
//
// labelInstruments
//
2023-11-18 12:13:53 +04:00
labelInstruments.Anchor = AnchorStyles.Top | AnchorStyles.Right;
labelInstruments.AutoSize = true;
labelInstruments.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
labelInstruments.Location = new Point(580, 0);
labelInstruments.Name = "labelInstruments";
labelInstruments.Size = new Size(108, 21);
labelInstruments.TabIndex = 2;
labelInstruments.Text = "Инструменты";
2023-11-18 10:47:46 +04:00
//
// buttonUpdate
//
2023-11-18 12:13:53 +04:00
buttonUpdate.Anchor = AnchorStyles.Top | AnchorStyles.Right;
buttonUpdate.Location = new Point(572, 130);
buttonUpdate.Name = "buttonUpdate";
buttonUpdate.Size = new Size(131, 25);
buttonUpdate.TabIndex = 3;
buttonUpdate.Text = "Обновить набор";
buttonUpdate.UseVisualStyleBackColor = true;
buttonUpdate.Click += buttonUpdate_Click;
//
// buttonDeleteAirbus
//
buttonDeleteAirbus.Anchor = AnchorStyles.Top | AnchorStyles.Right;
buttonDeleteAirbus.Location = new Point(572, 392);
buttonDeleteAirbus.Name = "buttonDeleteAirbus";
buttonDeleteAirbus.Size = new Size(137, 28);
buttonDeleteAirbus.TabIndex = 4;
buttonDeleteAirbus.Text = "Удалить самолёт";
buttonDeleteAirbus.UseVisualStyleBackColor = true;
buttonDeleteAirbus.Click += buttonDeleteAirbus_Click;
2023-11-18 10:47:46 +04:00
//
// maskedTextBoxNumber
//
2023-11-18 12:13:53 +04:00
maskedTextBoxNumber.Anchor = AnchorStyles.Top | AnchorStyles.Right;
maskedTextBoxNumber.Location = new Point(572, 365);
maskedTextBoxNumber.Mask = "00";
maskedTextBoxNumber.Name = "maskedTextBoxNumber";
maskedTextBoxNumber.Size = new Size(138, 23);
maskedTextBoxNumber.TabIndex = 5;
maskedTextBoxNumber.ValidatingType = typeof(int);
//
// label1
//
label1.Anchor = AnchorStyles.Top | AnchorStyles.Right;
label1.AutoSize = true;
label1.Location = new Point(572, 38);
label1.Name = "label1";
label1.Size = new Size(52, 15);
label1.TabIndex = 7;
label1.Text = "Наборы";
//
// listBoxStorages
//
listBoxStorages.FormattingEnabled = true;
listBoxStorages.ItemHeight = 15;
listBoxStorages.Location = new Point(572, 160);
listBoxStorages.Margin = new Padding(3, 2, 3, 2);
listBoxStorages.Name = "listBoxStorages";
listBoxStorages.Size = new Size(132, 109);
listBoxStorages.TabIndex = 8;
listBoxStorages.SelectedIndexChanged += listBoxObjects_SelectedIndexChanged;
//
// buttonAddStorage
//
buttonAddStorage.Location = new Point(572, 102);
buttonAddStorage.Margin = new Padding(3, 2, 3, 2);
buttonAddStorage.Name = "buttonAddStorage";
buttonAddStorage.Size = new Size(131, 25);
buttonAddStorage.TabIndex = 9;
buttonAddStorage.Text = "Добавить набор";
buttonAddStorage.UseVisualStyleBackColor = true;
buttonAddStorage.Click += buttonAddStorage_Click;
//
// buttonDeleteStorage
//
buttonDeleteStorage.Location = new Point(572, 273);
buttonDeleteStorage.Margin = new Padding(3, 2, 3, 2);
buttonDeleteStorage.Name = "buttonDeleteStorage";
buttonDeleteStorage.Size = new Size(131, 25);
buttonDeleteStorage.TabIndex = 10;
buttonDeleteStorage.Text = "Удалить набор";
buttonDeleteStorage.UseVisualStyleBackColor = true;
buttonDeleteStorage.Click += buttonDeleteStorage_Click;
//
// textBoxStorageName
//
textBoxStorageName.Location = new Point(572, 77);
textBoxStorageName.Margin = new Padding(3, 2, 3, 2);
textBoxStorageName.Name = "textBoxStorageName";
textBoxStorageName.Size = new Size(132, 23);
textBoxStorageName.TabIndex = 11;
2023-11-18 10:47:46 +04:00
//
// FormAirbusCollection
//
2023-11-18 12:13:53 +04:00
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(724, 443);
Controls.Add(textBoxStorageName);
Controls.Add(buttonDeleteStorage);
Controls.Add(buttonAddStorage);
Controls.Add(listBoxStorages);
Controls.Add(label1);
Controls.Add(buttonAddAirbus);
2023-11-18 10:47:46 +04:00
Controls.Add(maskedTextBoxNumber);
2023-11-18 12:13:53 +04:00
Controls.Add(buttonDeleteAirbus);
2023-11-18 10:47:46 +04:00
Controls.Add(buttonUpdate);
Controls.Add(labelInstruments);
Controls.Add(pictureBoxCollection);
2023-11-18 12:13:53 +04:00
Name = "FormAirbusCollection";
Text = "Набор самолётов";
2023-11-18 10:47:46 +04:00
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
2023-11-18 12:13:53 +04:00
private Button buttonAddAirbus;
2023-11-18 10:47:46 +04:00
private PictureBox pictureBoxCollection;
private Label labelInstruments;
private Button buttonUpdate;
2023-11-18 12:13:53 +04:00
private Button buttonDeleteAirbus;
2023-11-18 10:47:46 +04:00
private ColorDialog colorDialog;
private MaskedTextBox maskedTextBoxNumber;
2023-11-18 12:13:53 +04:00
private Label label1;
private ListBox listBoxStorages;
private Button buttonAddStorage;
private Button buttonDeleteStorage;
private TextBox textBoxStorageName;
2023-11-18 10:47:46 +04:00
}
}