PIbd-22. Kozlova A.A. Lab work 04 #5

Closed
Nastya_Kozlova wants to merge 5 commits from laba4 into laba3
2 changed files with 10 additions and 16 deletions
Showing only changes of commit d5b9513f4d - Show all commits

View File

@ -34,13 +34,13 @@
ButtonRemoveObject = new Button();
listBoxStorage = new ListBox();
ButtonAddObject = new Button();
textBoxStorageName = new TextBox();
labelSets = new Label();
ButtonAddAirplane = new Button();
ButtonRefreshCollection = new Button();
buttonRemoveAirplane = new Button();
maskedTextBoxNumber = new MaskedTextBox();
labelTools = new Label();
textBoxStorageName = new TextBox();
((System.ComponentModel.ISupportInitialize)pictureBoxCollection).BeginInit();
panelTools.SuspendLayout();
panelSets.SuspendLayout();
@ -69,10 +69,10 @@
//
// panelSets
//
panelSets.Controls.Add(textBoxStorageName);
panelSets.Controls.Add(ButtonRemoveObject);
panelSets.Controls.Add(listBoxStorage);
panelSets.Controls.Add(ButtonAddObject);
panelSets.Controls.Add(textBoxStorageName);
panelSets.Controls.Add(labelSets);
panelSets.Location = new Point(13, 24);
panelSets.Name = "panelSets";
@ -109,14 +109,6 @@
ButtonAddObject.UseVisualStyleBackColor = true;
ButtonAddObject.Click += ButtonAddObject_Click;
//
// textBoxStorageName
//
textBoxStorageName.Location = new Point(10, 44);
textBoxStorageName.Name = "textBoxStorageName";
textBoxStorageName.Size = new Size(160, 27);
textBoxStorageName.TabIndex = 1;
textBoxStorageName.TextChanged += textBoxStorageName_TextChanged;
//
// labelSets
//
labelSets.AutoSize = true;
@ -173,6 +165,13 @@
labelTools.TabIndex = 2;
labelTools.Text = "Инструменты";
//
// textBoxStorageName
//
textBoxStorageName.Location = new Point(10, 44);
textBoxStorageName.Name = "textBoxStorageName";
textBoxStorageName.Size = new Size(160, 27);
textBoxStorageName.TabIndex = 5;
//
// FormAirPlaneCollection
//
AutoScaleDimensions = new SizeF(8F, 20F);
@ -204,8 +203,8 @@
private Panel panelSets;
private Label labelSets;
private Button ButtonAddObject;
private TextBox textBoxStorageName;
private Button ButtonRemoveObject;
private ListBox listBoxStorage;
private TextBox textBoxStorageName;
}
}

View File

@ -158,10 +158,5 @@ namespace AirFighter
}
pictureBoxCollection.Image = obj.ShowAirplanes();
}
private void textBoxStorageName_TextChanged(object sender, EventArgs e)
{
}
}
}