15 references to Items
Microsoft.Maui.Controls (15)
Shell\Shell.cs (1)
1645
foreach (var content in section.
Items
)
Shell\ShellSection.cs (11)
22
[ContentProperty(nameof(
Items
))]
30
BindableProperty.CreateReadOnly(nameof(
Items
), typeof(ShellContentCollection), typeof(ShellSection), null,
164
ReadOnlyCollection<ShellContent> IShellSectionController.GetItems() => ((ShellContentCollection)
Items
).VisibleItemsReadOnly;
190
add { ((ShellContentCollection)
Items
).VisibleItemsChanged += value; }
191
remove { ((ShellContentCollection)
Items
).VisibleItemsChanged -= value; }
208
/// <summary>Bindable property for <see cref="
Items
"/>.</summary>
219
((ShellElementCollection)
Items
).VisibleItemsChangedInternal += (_, args) =>
252
internal override ShellElementCollection ShellElementCollection => (ShellElementCollection)
Items
;
282
if (current.
Items
.Contains(shellContent))
294
shellSection.
Items
.Add(shellContent);
1023
foreach (ShellContent shellContent in
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]);