1 instantiation of ShellSectionCollection
Microsoft.Maui.Controls (1)
Shell\ShellItem.cs (1)
61
defaultValueCreator: bo => new
ShellSectionCollection
{ Inner = new ElementCollection<ShellSection>(((ShellItem)bo).DeclaredChildren) });
8 references to ShellSectionCollection
Microsoft.Maui.Controls (8)
Shell\ShellContentCollection.cs (1)
50
/// <param name="collection">The <see cref="
ShellSectionCollection
"/> instance to debug.</param>
Shell\ShellItem.cs (4)
60
static readonly BindablePropertyKey ItemsPropertyKey = BindableProperty.CreateReadOnly(nameof(Items), typeof(
ShellSectionCollection
), typeof(ShellItem), null,
91
ReadOnlyCollection<ShellSection> IShellItemController.GetItems() => ((
ShellSectionCollection
)Items).VisibleItemsReadOnly;
95
add { ((
ShellSectionCollection
)Items).VisibleItemsChanged += value; }
96
remove { ((
ShellSectionCollection
)Items).VisibleItemsChanged -= value; }
Shell\ShellSectionCollection.cs (3)
18
/// Provides a debug view for the <see cref="
ShellSectionCollection
"/> class.
20
/// <param name="collection">The <see cref="
ShellSectionCollection
"/> instance to debug.</param>
21
private sealed class ShellSectionCollectionDebugView(
ShellSectionCollection
collection)