Bondarenko M.S. Lab Work 5 #11

Closed
maxnes3 wants to merge 6 commits from LabWork_05 into LabWork_04
Showing only changes of commit 14ea9c0a89 - Show all commits

View File

@ -15,7 +15,7 @@ namespace WarmlyShip
DrawingWarmlyShip _warmlyShip = null;
private event ShipDelegate EventAddShip;
private Action<DrawingWarmlyShip> EventAddShip;
public FormShipConfig()
{
@ -41,11 +41,11 @@ namespace WarmlyShip
pictureBoxObject.Image = bmp;
}
public void AddEvent(ShipDelegate ev)
public void AddEvent(Action<DrawingWarmlyShip> ev)
{
if (EventAddShip == null)
{
EventAddShip = new ShipDelegate(ev);
EventAddShip = ev;
}
else
{