DrawArc

DrawArc(Pen, RectangleF, float, float)

绘制表示由 RectangleF 结构指定的椭圆的一部分的圆弧。

public void DrawArc(Pen pen, RectangleF rect, float startAngle, float sweepAngle)
范围类型描述
penPen确定圆弧颜色、宽度和样式的钢笔。
rectRectangleF定义椭圆边界的 RectangleF 结构。
startAngleSingle从 x 轴到圆弧起点顺时针测量的角度(以度为单位)。
sweepAngleSingle从 startAngle 参数到圆弧终点顺时针测量的角度(以度为单位)。

也可以看看


DrawArc(Pen, float, float, float, float, float, float)

绘制表示由一对坐标、宽度和高度指定的椭圆的一部分的弧。

public void DrawArc(Pen pen, float x, float y, float width, float height, float startAngle, 
    float sweepAngle)
范围类型描述
penPen确定圆弧颜色、宽度和样式的钢笔。
xSingle定义椭圆的矩形左上角的 x 坐标。
ySingle定义椭圆的矩形左上角的 y 坐标。
widthSingle定义椭圆的矩形的宽度。
heightSingle定义椭圆的矩形的高度。
startAngleSingle从 x 轴到圆弧起点顺时针测量的角度(以度为单位)。
sweepAngleSingle从 startAngle 参数到圆弧终点顺时针测量的角度(以度为单位)。

也可以看看