1 type derived from GeometryGroup
Microsoft.Maui.Controls (1)
Shapes\RoundRectangleGeometry.cs (1)
9
public class RoundRectangleGeometry :
GeometryGroup
1 instantiation of GeometryGroup
Microsoft.Maui.Controls (1)
Shapes\RoundRectangleGeometry.cs (1)
69
GeometryGroup roundedRectGeometry = new
GeometryGroup
13 references to GeometryGroup
Microsoft.Maui.Controls (10)
Platform\ShapeExtensions.cs (1)
17
if (data is
GeometryGroup
geometryGroup)
Shapes\GeometryGroup.cs (3)
14
BindableProperty.Create(nameof(Children), typeof(GeometryCollection), typeof(
GeometryGroup
), null,
19
(bindable as
GeometryGroup
)?.UpdateChildren(oldValue as GeometryCollection, newValue as GeometryCollection);
24
BindableProperty.Create(nameof(FillRule), typeof(FillRule), typeof(
GeometryGroup
), FillRule.EvenOdd);
Shapes\GeometryHelper.cs (2)
31
if (geoSrc is
GeometryGroup
)
33
foreach (Geometry geoChild in (geoSrc as
GeometryGroup
).Children)
Shapes\RoundRectangleGeometry.cs (1)
69
GeometryGroup
roundedRectGeometry = new GeometryGroup
VisualElement\VisualElement.cs (3)
145
if (s is
GeometryGroup
g)
150
if (source is
GeometryGroup
geometryGroup)
162
if (s is
GeometryGroup
g)
Microsoft.Maui.Controls.Compatibility (3)
iOS\Extensions\GeometryExtensions.cs (3)
54
else if (geometry is
GeometryGroup
)
56
GeometryGroup
geometryGroup = geometry as
GeometryGroup
;