12 references to Stack
Microsoft.Maui.Controls (12)
Shell\Shell.cs (4)
794
=> ShellNavigationManager.GetNavigationState(shellItem, shellSection, shellContent, includeStack ? shellSection.
Stack
.ToList() : null, includeStack ? shellSection.Navigation.ModalStack.ToList() : null);
934
var stack = shellSection?.
Stack
;
1538
if (currentContent != null && currentContent.
Stack
.Count > 1)
1680
var stack = shellSection.
Stack
;
Shell\ShellItem.cs (1)
80
shellSection?.
Stack
,
Shell\ShellNavigationManager.cs (3)
167
for (int i = currentShellSection.
Stack
.Count - 1; i >= 1; i--)
168
currentShellSection.Navigation.RemovePage(currentShellSection.
Stack
[i]);
578
return BuildFlattenedNavigationStack(section.
Stack
, section.Navigation.ModalStack);
Shell\ShellSection.cs (4)
651
var stack =
Stack
;
1180
var stack = _owner.
Stack
.ToList();
1205
var stack = _owner.
Stack
.ToList();
1286
public IReadOnlyList<Page> Stack => section.
Stack
;