[Solved] How to draw a line from two points? [closed]


By using Graphics.DrawLine, for example:

public void DrawLinePoint(PaintEventArgs e)
{
    // Create pen.
    Pen blackPen = new Pen(Color.Black, 3);

    // Create points that define line.   
    Point point1 = new Point(100, 100);   
    Point point2 = new Point(500, 100);   

    // Draw line to screen.   
    e.Graphics.DrawLine(blackPen, point1, point2);   
}

See MSDN for more info: https://msdn.microsoft.com/en-us/library/f956fzw1(v=vs.110).aspx

solved How to draw a line from two points? [closed]