Убран пустой метод

This commit is contained in:
Данияр Аглиуллов 2022-09-14 00:27:06 +04:00
parent 22a185114f
commit b62d00bb7a
2 changed files with 0 additions and 6 deletions

View File

@ -51,7 +51,6 @@
this.pictureBoxCar.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; this.pictureBoxCar.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.pictureBoxCar.TabIndex = 0; this.pictureBoxCar.TabIndex = 0;
this.pictureBoxCar.TabStop = false; this.pictureBoxCar.TabStop = false;
this.pictureBoxCar.Click += new System.EventHandler(this.pictureBoxCar_Click);
this.pictureBoxCar.Resize += new System.EventHandler(this.PictureBoxCar_Resize); this.pictureBoxCar.Resize += new System.EventHandler(this.PictureBoxCar_Resize);
// //
// statusStrip // statusStrip

View File

@ -70,10 +70,5 @@ namespace AirBomber
_airplane?.ChangeBorders(pictureBoxCar.Width, pictureBoxCar.Height); _airplane?.ChangeBorders(pictureBoxCar.Width, pictureBoxCar.Height);
Draw(); Draw();
} }
private void pictureBoxCar_Click(object sender, EventArgs e)
{
}
} }
} }