2 writes to FillRule
Microsoft.Maui.Controls (2)
Shapes\GeometryHelper.cs (1)
93
pathGeoDst.
FillRule
= pathGeoSrc.FillRule;
Shapes\PathGeometry.cs (1)
31
FillRule
= fillRule;
5 references to FillRule
Microsoft.Maui.Controls (4)
Platform\ShapeExtensions.cs (1)
21
fillRule = pathGeometry.
FillRule
;
Shapes\GeometryHelper.cs (1)
93
pathGeoDst.FillRule = pathGeoSrc.
FillRule
;
Shapes\PathGeometry.cs (2)
39
/// <summary>Bindable property for <see cref="
FillRule
"/>.</summary>
41
BindableProperty.Create(nameof(
FillRule
), typeof(FillRule), typeof(PathGeometry), FillRule.EvenOdd);
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Extensions\GeometryExtensions.cs (1)
85
path.FillType = pathGeometry.
FillRule
== FillRule.Nonzero ? SKPathFillType.Winding : SKPathFillType.EvenOdd;