This commit is contained in:
Алексей Тихоненков 2023-10-13 00:01:01 +04:00
parent 2419848c25
commit 821102b9ed
2 changed files with 7 additions and 2 deletions

View File

@ -115,12 +115,12 @@
this.comboBoxStrategy.FormattingEnabled = true;
this.comboBoxStrategy.Items.AddRange(new object[] {
"Двигаться в центер ",
"Двигаться в правый нижний угол",
"Двигаться к краю окна"});
"Двигаться в правый нижний угол"});
this.comboBoxStrategy.Location = new System.Drawing.Point(1244, 28);
this.comboBoxStrategy.Name = "comboBoxStrategy";
this.comboBoxStrategy.Size = new System.Drawing.Size(170, 23);
this.comboBoxStrategy.TabIndex = 6;
this.comboBoxStrategy.SelectedIndexChanged += new System.EventHandler(this.comboBoxStrategy_SelectedIndexChanged);
//
// CreateAntiAirCraftGun
//

View File

@ -121,5 +121,10 @@ namespace AntiAircraftGun
}
}
private void comboBoxStrategy_SelectedIndexChanged(object sender, EventArgs e)
{
}
}
}