private void CreateSegment(Control ctl, int number) { Graphics g = ctl.CreateGraphics(); Pen p = new Pen(Color.Orange, 10); Point po1 = new Point(10, 10); Point po2 = new Point(10, 50); Point po3 = new Point(10, 90); Point po4 = new Point(60, 10); Point po5 = new Point(60, 50); Point po6 = new Point(60, 90); g.Clear(Color.Black); if (number == 0) { g.DrawLine(p, po1, po2); g.D..