16 references to Items
Microsoft.Maui.Controls (16)
Shell\Shell.cs (1)
1647
foreach (var content in section.
Items
)
Shell\ShellSection.cs (12)
23
[ContentProperty(nameof(
Items
))]
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; }
210
/// <summary>Bindable property for <see cref="
Items
"/>.</summary>
221
((ShellElementCollection)
Items
).VisibleItemsChangedInternal += (_, args) =>
254
internal override ShellElementCollection ShellElementCollection => (ShellElementCollection)
Items
;
284
if (current.
Items
.Contains(shellContent))
296
shellSection.
Items
.Add(shellContent);
1036
foreach (ShellContent shellContent in
Items
)
1284
public IList<ShellContent> Items => section.
Items
;
Shell\ShellUriHandler.cs (3)
827
contentIndex = Section.
Items
.IndexOf(Content) + 1;
834
for (int k = contentIndex; k < Shell.Items[i].Items[j].
Items
.Count;)
839
nodeLocation.SetNode(Shell.Items[i].Items[j].
Items
[k]);