1 interface inheriting from IPageController
Microsoft.Maui.Controls (1)
Shell\IShellController.cs (1)
20
public interface IShellController :
IPageController
1 implementation of IPageController
Microsoft.Maui.Controls (1)
Page\Page.cs (1)
21
public partial class Page : VisualElement, ILayout,
IPageController
, IElementConfiguration<Page>, IPaddingElement, ISafeAreaView, ISafeAreaView2, IView, ITitledElement, IToolbarElement
13 references to IPageController
Microsoft.Maui.Controls (2)
Compatibility\Handlers\NavigationPage\iOS\NavigationRenderer.cs (2)
70
IPageController
PageController => Element as
IPageController
;
Microsoft.Maui.Controls.Compatibility (11)
Tizen\Platform.cs (3)
174
IPageController
CurrentPageController => CurrentPage;
295
var
previousPage = CurrentPageController;
314
(page as
IPageController
)?.SendDisappearing();
Tizen\Renderers\NavigationPageRenderer.cs (7)
63
(Element as
IPageController
).InternalChildren.CollectionChanged += OnPageCollectionChanged;
70
var
pageController = Element as
IPageController
;
89
(_previousPage as
IPageController
)?.SendDisappearing();
91
(_previousPage as
IPageController
)?.SendAppearing();
111
(Element as
IPageController
).InternalChildren.CollectionChanged -= OnPageCollectionChanged;
112
foreach (var child in (Element as
IPageController
).InternalChildren)
Tizen\Renderers\VisualElementRenderer.cs (1)
264
(Element as
IPageController
)?.SendDisappearing();