DrawLine

DrawLine(Pen, Point, Point)

画一条线连接两个Point结构.

public void DrawLine(Pen pen, Point pt1, Point pt2)
范围类型描述
penPenPen它决定了线条的颜色、宽度和样式。
pt1PointPoint表示要连接的第一个点的结构。
pt2PointPoint表示要连接的第二个点的结构。

也可以看看


DrawLine(Pen, int, int, int, int)

绘制一条连接由坐标对指定的两个点的线。

public void DrawLine(Pen pen, int x1, int y1, int x2, int y2)
范围类型描述
penPen确定线条颜色、宽度和样式的钢笔。
x1Int32第一个点的 x 坐标。
y1Int32第一个点的 y 坐标。
x2Int32第二个点的 x 坐标。
y2Int32第二个点的 y 坐标。

也可以看看


DrawLine(Pen, PointF, PointF)

绘制一条连接两个 PointF 结构的线。

public void DrawLine(Pen pen, PointF pt1, PointF pt2)
范围类型描述
penPen确定线条颜色、宽度和样式的钢笔。
pt1PointFPointF 结构,表示要连接的第一个点。
pt2PointFPointF 结构,表示要连接的第二个点。

也可以看看


DrawLine(Pen, float, float, float, float)

绘制一条连接由坐标对指定的两个点的线。

public void DrawLine(Pen pen, float x1, float y1, float x2, float y2)
范围类型描述
penPen确定线条颜色、宽度和样式的钢笔。
x1Single第一个点的 x 坐标。
y1Single第一个点的 y 坐标。
x2Single第二个点的 x 坐标。
y2Single第二个点的 y 坐标。

也可以看看