C#
- 12 ответов
- 0 вопросов
5
Вклад в тег
case Keys.Left:
image5 = new Bitmap(@"C:\Users\MAKSIM\source\repos\LoadLevel\WindowsFormsApp5\Image\left.png");
g.DrawImage(image3, posSX * 32, posSY * 32);
g.DrawImage(image5, posSX * 32 - 32, posSY * 32);
posSX -= 1;
if (coordBoll[posSX, posSY] == 2)
{
for (int j = 0; j < height; j++)
{
for (int i = 0; i < width; i++)
{
g.DrawImage(image2, posSX * 32 - 32, posSY * 32);
}
}
}
g.DrawImage(image2, posSX * 32 - 32, posSY * 32); // а зачем в условии эта последняя строчка с прорисованием image2 вновь....
break;
if (indexOfNegativeElement >= 0 && indexOfPositiveElement <= 0)
{
int temp = mas[indexOfNegativeElement];
mas[indexOfNegativeElement] = mas[indexOfPositiveElement];
mas[indexOfPositiveElement] = temp;
}
listBox2.Items.Add(mas[i].ToString());
if (indexOfNegativeElement <= 0 && indexOfPositiveElement >= 0)
{
int temp = mas[indexOfNegativeElement];
mas[indexOfNegativeElement] = mas[indexOfPositiveElement];
mas[indexOfPositiveElement] = temp;
}
listBox2.Items.Add(mas[i].ToString());