2using System.Collections.Generic;
13 private SKColor fgColor;
14 private SKColor bgColor;
15 private SKPaint pen =
null;
16 private SKPaint brush =
null;
17 private float width = 1;
32 this.brush?.Dispose();
58 set => this.bgColor = value;
88 this.pen =
new SKPaint()
90 FilterQuality = SKFilterQuality.High,
92 Style = SKPaintStyle.Stroke,
94 StrokeWidth = this.width
109 if (this.brush is
null)
111 this.brush =
new SKPaint()
113 FilterQuality = SKFilterQuality.High,
115 Style = SKPaintStyle.Fill,
Current drawing state in a canvas graph.
SKColor BgColor
Background color
SKColor FgColor
Foreground color
SKPaint Brush
Current brush
float Y
Current Y-coordinate.
float X
Current X-coordinate.