128 lines
4.9 KiB
C#
128 lines
4.9 KiB
C#
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()
|
||
{
|
||
buttonAdd=new Button();
|
||
pictureBoxCollection=new PictureBox();
|
||
labelInstruments=new Label();
|
||
buttonUpdate=new Button();
|
||
buttonDelete=new Button();
|
||
colorDialog=new ColorDialog();
|
||
maskedTextBoxNumber=new MaskedTextBox();
|
||
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit();
|
||
SuspendLayout();
|
||
//
|
||
// buttonAdd
|
||
//
|
||
buttonAdd.Anchor=AnchorStyles.Top|AnchorStyles.Right;
|
||
buttonAdd.Location=new Point(457, 34);
|
||
buttonAdd.Name="buttonAdd";
|
||
buttonAdd.Size=new Size(137, 28);
|
||
buttonAdd.TabIndex=0;
|
||
buttonAdd.Text="Добавить самолёт";
|
||
buttonAdd.UseVisualStyleBackColor=true;
|
||
buttonAdd.Click+=buttonAdd_Click;
|
||
//
|
||
// pictureBoxCollection
|
||
//
|
||
pictureBoxCollection.Location=new Point(0, 0);
|
||
pictureBoxCollection.Name="pictureBoxCollection";
|
||
pictureBoxCollection.Size=new Size(424, 453);
|
||
pictureBoxCollection.TabIndex=1;
|
||
pictureBoxCollection.TabStop=false;
|
||
//
|
||
// labelInstruments
|
||
//
|
||
labelInstruments.Anchor=AnchorStyles.Top|AnchorStyles.Right;
|
||
labelInstruments.AutoSize=true;
|
||
labelInstruments.Location=new Point(449, 9);
|
||
labelInstruments.Name="labelInstruments";
|
||
labelInstruments.Size=new Size(83, 15);
|
||
labelInstruments.TabIndex=2;
|
||
labelInstruments.Text="Инструменты";
|
||
//
|
||
// buttonUpdate
|
||
//
|
||
buttonUpdate.Anchor=AnchorStyles.Top|AnchorStyles.Right;
|
||
buttonUpdate.Location=new Point(457, 212);
|
||
buttonUpdate.Name="buttonUpdate";
|
||
buttonUpdate.Size=new Size(137, 28);
|
||
buttonUpdate.TabIndex=3;
|
||
buttonUpdate.Text="Обновить коллекцию";
|
||
buttonUpdate.UseVisualStyleBackColor=true;
|
||
buttonUpdate.Click+=buttonUpdate_Click;
|
||
//
|
||
// buttonDelete
|
||
//
|
||
buttonDelete.Anchor=AnchorStyles.Top|AnchorStyles.Right;
|
||
buttonDelete.Location=new Point(457, 140);
|
||
buttonDelete.Name="buttonDelete";
|
||
buttonDelete.Size=new Size(137, 28);
|
||
buttonDelete.TabIndex=4;
|
||
buttonDelete.Text="Удалить самолёт";
|
||
buttonDelete.UseVisualStyleBackColor=true;
|
||
buttonDelete.Click+=buttonDelete_Click;
|
||
//
|
||
// maskedTextBoxNumber
|
||
//
|
||
maskedTextBoxNumber.Anchor=AnchorStyles.Top|AnchorStyles.Right;
|
||
maskedTextBoxNumber.Location=new Point(457, 111);
|
||
maskedTextBoxNumber.Name="maskedTextBoxNumber";
|
||
maskedTextBoxNumber.Size=new Size(100, 23);
|
||
maskedTextBoxNumber.TabIndex=5;
|
||
//
|
||
// FormAirbusCollection
|
||
//
|
||
AutoScaleDimensions=new SizeF(7F, 15F);
|
||
AutoScaleMode=AutoScaleMode.Font;
|
||
ClientSize=new Size(607, 455);
|
||
Controls.Add(buttonAdd);
|
||
Controls.Add(maskedTextBoxNumber);
|
||
Controls.Add(buttonDelete);
|
||
Controls.Add(buttonUpdate);
|
||
Controls.Add(labelInstruments);
|
||
Controls.Add(pictureBoxCollection);
|
||
Name="FormAirbusCollection";
|
||
Text="Набор самолётов";
|
||
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).EndInit();
|
||
ResumeLayout(false);
|
||
PerformLayout();
|
||
}
|
||
|
||
#endregion
|
||
|
||
private Button buttonAdd;
|
||
private PictureBox pictureBoxCollection;
|
||
private Label labelInstruments;
|
||
private Button buttonUpdate;
|
||
private Button buttonDelete;
|
||
private ColorDialog colorDialog;
|
||
private MaskedTextBox maskedTextBoxNumber;
|
||
}
|
||
} |