Готово

This commit is contained in:
Артём Яшин 2023-10-12 17:33:02 +04:00
parent c2cc97549f
commit 45ab16f455

View File

@ -43,12 +43,12 @@
// buttonCreateAirBomber
//
buttonCreateAirBomber.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonCreateAirBomber.Location = new Point(12, 570);
buttonCreateAirBomber.Location = new Point(12, 551);
buttonCreateAirBomber.Margin = new Padding(3, 4, 3, 4);
buttonCreateAirBomber.Name = "buttonCreateAirBomber";
buttonCreateAirBomber.Size = new Size(103, 32);
buttonCreateAirBomber.Size = new Size(165, 51);
buttonCreateAirBomber.TabIndex = 1;
buttonCreateAirBomber.Text = "Создать";
buttonCreateAirBomber.Text = "Создать бомбардировщик";
buttonCreateAirBomber.UseVisualStyleBackColor = true;
buttonCreateAirBomber.Click += buttonCreateAirBomber_Click;
//
@ -108,12 +108,12 @@
// buttonCreatePlane
//
buttonCreatePlane.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonCreatePlane.Location = new Point(121, 570);
buttonCreatePlane.Location = new Point(183, 551);
buttonCreatePlane.Margin = new Padding(3, 4, 3, 4);
buttonCreatePlane.Name = "buttonCreatePlane";
buttonCreatePlane.Size = new Size(103, 32);
buttonCreatePlane.Size = new Size(189, 51);
buttonCreatePlane.TabIndex = 6;
buttonCreatePlane.Text = "Создать";
buttonCreatePlane.Text = "Создать обычный самолет";
buttonCreatePlane.UseVisualStyleBackColor = true;
buttonCreatePlane.Click += buttonCreatePlane_Click;
//
@ -121,7 +121,7 @@
//
comboBoxStrategy.Anchor = AnchorStyles.Top | AnchorStyles.Right;
comboBoxStrategy.FormattingEnabled = true;
comboBoxStrategy.Items.AddRange(new object[] { "MoveToCenter", "MoveToBorder" });
comboBoxStrategy.Items.AddRange(new object[] { "К центру", "К границе" });
comboBoxStrategy.Location = new Point(847, 12);
comboBoxStrategy.Name = "comboBoxStrategy";
comboBoxStrategy.Size = new Size(151, 28);
@ -129,11 +129,12 @@
//
// ButtonStep
//
ButtonStep.Anchor = AnchorStyles.Top | AnchorStyles.Right;
ButtonStep.Location = new Point(904, 46);
ButtonStep.Name = "ButtonStep";
ButtonStep.Size = new Size(94, 29);
ButtonStep.TabIndex = 8;
ButtonStep.Text = "button1";
ButtonStep.Text = "Шаг";
ButtonStep.UseVisualStyleBackColor = true;
ButtonStep.Click += ButtonStep_Click;
//