1 instantiation of TransformCollection
Microsoft.Maui.Controls (1)
Shapes\TransformGroup.cs (1)
19
Children = new
TransformCollection
();
5 references to TransformCollection
Microsoft.Maui.Controls (5)
Shapes\TransformGroup.cs (5)
13
BindableProperty.Create(nameof(Children), typeof(
TransformCollection
), typeof(TransformGroup), null,
23
public
TransformCollection
Children
26
get { return (
TransformCollection
)GetValue(ChildrenProperty); }
33
(oldValue as
TransformCollection
).CollectionChanged -= (bindable as TransformGroup).OnChildrenCollectionChanged;
38
(newValue as
TransformCollection
).CollectionChanged += (bindable as TransformGroup).OnChildrenCollectionChanged;