1 instantiation of ShellSectionCollection
Microsoft.Maui.Controls (1)
Shell\ShellItem.cs (1)
59
defaultValueCreator: bo => new
ShellSectionCollection
{ Inner = new ElementCollection<ShellSection>(((ShellItem)bo).DeclaredChildren) });
4 references to ShellSectionCollection
Microsoft.Maui.Controls (4)
Shell\ShellItem.cs (4)
58
static readonly BindablePropertyKey ItemsPropertyKey = BindableProperty.CreateReadOnly(nameof(Items), typeof(
ShellSectionCollection
), typeof(ShellItem), null,
89
ReadOnlyCollection<ShellSection> IShellItemController.GetItems() => ((
ShellSectionCollection
)Items).VisibleItemsReadOnly;
93
add { ((
ShellSectionCollection
)Items).VisibleItemsChanged += value; }
94
remove { ((
ShellSectionCollection
)Items).VisibleItemsChanged -= value; }