diff --git a/ProjectStormtrooper/FormAirplaneCollection.Designer.cs b/ProjectStormtrooper/FormAirplaneCollection.Designer.cs index 66b3780..0b5ece2 100644 --- a/ProjectStormtrooper/FormAirplaneCollection.Designer.cs +++ b/ProjectStormtrooper/FormAirplaneCollection.Designer.cs @@ -109,6 +109,7 @@ namespace ProjectStormtrooper buttonAddStormtrooper.TabIndex = 2; buttonAddStormtrooper.Text = "Добавление штурмовика"; buttonAddStormtrooper.UseVisualStyleBackColor = true; + buttonAddStormtrooper.Click += buttonAddStormtrooper_Click_1; // // buttonAddAirplane // diff --git a/ProjectStormtrooper/FormAirplaneCollection.cs b/ProjectStormtrooper/FormAirplaneCollection.cs index 6ac8318..ff7ca8e 100644 --- a/ProjectStormtrooper/FormAirplaneCollection.cs +++ b/ProjectStormtrooper/FormAirplaneCollection.cs @@ -155,4 +155,9 @@ public partial class FormAirplaneCollection : Form { } + + private void buttonAddStormtrooper_Click_1(object sender, EventArgs e) + { + + } }