FillPie

FillPie(Brush, Rectangle, float, float)

填充由 Rectangle 结构指定的椭圆和两条径向线定义的饼图部分的内部。

public void FillPie(Brush brush, Rectangle rect, float startAngle, float sweepAngle)
范围类型描述
brushBrush决定填充特性的画笔。
rectRectangle矩形结构,表示定义饼图部分所在的椭圆的边界矩形。
startAngleSingle从 x 轴到饼图部分的第一侧顺时针测量的角度(以度为单位)。
sweepAngleSingle从 startAngle 参数顺时针测量到饼图部分第二侧的角度(以度为单位)。

也可以看看


FillPie(Brush, float, float, float, float, float, float)

填充由一对坐标、宽度、高度和两条径向线指定的椭圆定义的饼图部分的内部。

public void FillPie(Brush brush, float x, float y, float width, float height, float startAngle, 
    float sweepAngle)
范围类型描述
brushBrushBrush这决定了填充的特性。
xSingle边界矩形左上角的 x 坐标,用于定义饼图部分所在的椭圆。
ySingle边界矩形左上角的 y 坐标,用于定义饼图部分所在的椭圆。
widthSingle边界矩形的宽度,用于定义饼图部分所在的椭圆。
heightSingle边界矩形的高度,它定义了饼图部分来自的椭圆。
startAngleSingle从 x 轴到饼图部分的第一侧顺时针测量的角度(以度为单位)。
sweepAngleSingle从 startAngle 参数顺时针测量到饼图部分第二侧的角度(以度为单位)。

也可以看看


FillPie(Brush, int, int, int, int, int, int)

填充由一对坐标、宽度、高度和两条径向线指定的椭圆定义的饼图部分的内部。

public void FillPie(Brush brush, int x, int y, int width, int height, int startAngle, 
    int sweepAngle)
范围类型描述
brushBrushBrush这决定了填充的特性。
xInt32边界矩形左上角的 x 坐标,用于定义饼图部分所在的椭圆。
yInt32边界矩形左上角的 y 坐标,用于定义饼图部分所在的椭圆。
widthInt32边界矩形的宽度,用于定义饼图部分所在的椭圆。
heightInt32边界矩形的高度,它定义了饼图部分来自的椭圆。
startAngleInt32从 x 轴到饼图部分的第一侧顺时针测量的角度(以度为单位)。
sweepAngleInt32从 startAngle 参数顺时针测量到饼图部分第二侧的角度(以度为单位)。

也可以看看