8 references to ElementCollection
Microsoft.Maui.Controls (8)
LegacyLayouts\AbsoluteLayout.cs (1)
313
public AbsoluteElementCollection(ObservableCollection<Element> inner, AbsoluteLayout parent) :
base
(inner)
LegacyLayouts\Grid.cs (1)
305
public GridElementCollection(ObservableCollection<Element> inner, Grid parent) :
base
(inner)
LegacyLayouts\Layout.cs (1)
25
protected Layout() => _children = new
ElementCollection
<T>(InternalChildren);
LegacyLayouts\RelativeLayout.cs (1)
352
public RelativeElementCollection(ObservableCollection<Element> inner, RelativeLayout parent) :
base
(inner)
MultiPage.cs (1)
39
_children = new
ElementCollection
<T>(InternalChildren);
Shell\Shell.cs (1)
628
defaultValueCreator: bo => new ShellItemCollection { Inner = new
ElementCollection
<ShellItem>(((Shell)bo).InternalChildren) });
Shell\ShellItem.cs (1)
59
defaultValueCreator: bo => new ShellSectionCollection { Inner = new
ElementCollection
<ShellSection>(((ShellItem)bo).DeclaredChildren) });
Shell\ShellSection.cs (1)
31
defaultValueCreator: bo => new ShellContentCollection() { Inner = new
ElementCollection
<ShellContent>(((ShellSection)bo).DeclaredChildren) });