Selyaev D.A. LabWork №1 #2
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "LabWork1"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Пулл правильно называть надо, с указанием ФИО и номера лабораторной
Зачтено с понижением балла(ов)
@ -0,0 +4,4 @@
using System.Text;
using System.Threading.Tasks;
namespace Locomative
Название проекта не соответствует указаному в задании
@ -0,0 +20,4 @@
Locomative = new EntityLocomative();
Locomative.Init(speed, weight, bodyColor);
}
public void SetPosition(int x, int y, int width, int height)
Не учтены все условия, при которых объект может выйти за границы
@ -0,0 +23,4 @@
public void SetPosition(int x, int y, int width, int height)
{
Random rnd1 = new();
if (width < 120 || height < 50) return;
Почему именно эти числа?
@ -0,0 +14,4 @@
_loco?.DrawTransport(gr);
pictureBoxLocomative.Image = bmp;
}
private void LocomativeForm_Load(object sender, EventArgs e)
Пустых методов быть не должно
@ -0,0 +31,4 @@
Draw();
}
private void buttonMove_Click(object sender, EventArgs e)
Зачем???
@ -0,0 +57,4 @@
Draw();
}
private void pictureBoxLocomative_Click(object sender, EventArgs e)
Пустых методов быть не должно
LabWork1to Selyaev D.A. LabWork №1