Suggestion:
From StandardZoomRectangle, unlike the FillColor, the LineStyle cannot be set.
Would it be possible to change line 12 from:
|
public LineStyle LineStyle { get; } = new() { Color = new Color(255, 0, 0).WithAlpha(200) }; |
to?:
public LineStyle LineStyle { get; set; } = new() { Color = new Color(255, 0, 0).WithAlpha(200) };