Implemented interface member:
property
CurrentPage
Microsoft.Maui.Controls.IPageContainer<T>.CurrentPage
4 writes to CurrentPage
Microsoft.Maui.Controls (4)
MultiPage.cs (4)
218 CurrentPage = Children.FirstOrDefault(); 372 CurrentPage = (T)InternalChildren.FirstOrDefault(); 374 CurrentPage = _templatedItems.GetOrCreateContent(index, SelectedItem); 377 CurrentPage = (T)SelectedItem;
7 references to CurrentPage
Microsoft.Maui.Controls (7)
MultiPage.cs (6)
118 if (CurrentPage != null) 120 bool handled = CurrentPage.SendBackButtonPressed(); 155 if (CurrentPage == null) 161 int index = _templatedItems.IndexOf(CurrentPage); 217 if (CurrentPage == null || Children.IndexOf(CurrentPage) == -1)
TabbedPage\TabbedPage.Mapper.cs (1)
21 TabbedViewHandler.Mapper.ReplaceMapping<TabbedPage, ITabbedViewHandler>(nameof(CurrentPage), MapCurrentPage);