Add LaneOut into MainForm

This commit is contained in:
DucDangAnh 2020-06-16 17:25:18 +07:00
parent e88714bb45
commit 8496a0f348

View File

@ -24,6 +24,7 @@ namespace AIParkingApplication
LaneIn laneIn = new LaneIn(); LaneIn laneIn = new LaneIn();
LaneOut laneOut = new LaneOut(); LaneOut laneOut = new LaneOut();
this.Controls.Add(laneIn); this.Controls.Add(laneIn);
laneOut.Location = new System.Drawing.Point(550, 0);
this.Controls.Add(laneOut); this.Controls.Add(laneOut);
} }