1 instantiation of ShellContentCollection
Microsoft.Maui.Controls (1)
Shell\ShellSection.cs (1)
33
defaultValueCreator: bo => new
ShellContentCollection
() { Inner = new ElementCollection<ShellContent>(((ShellSection)bo).DeclaredChildren) });
6 references to ShellContentCollection
Microsoft.Maui.Controls (6)
Shell\ShellContentCollection.cs (2)
48
/// Provides a debug view for the <see cref="
ShellContentCollection
"/> class.
51
private sealed class ShellContentCollectionDebugView(
ShellContentCollection
collection)
Shell\ShellSection.cs (4)
32
BindableProperty.CreateReadOnly(nameof(Items), typeof(
ShellContentCollection
), typeof(ShellSection), null,
166
ReadOnlyCollection<ShellContent> IShellSectionController.GetItems() => ((
ShellContentCollection
)Items).VisibleItemsReadOnly;
192
add { ((
ShellContentCollection
)Items).VisibleItemsChanged += value; }
193
remove { ((
ShellContentCollection
)Items).VisibleItemsChanged -= value; }