20 references to Detail
Microsoft.Maui.Controls (20)
Compatibility\Handlers\FlyoutPage\iOS\PhoneFlyoutPageRenderer.cs (7)
385
var detailRenderer = FlyoutPage.
Detail
.Handler as IPlatformViewHandler;
537
var detailRenderer = ((FlyoutPage)Element).
Detail
.ToHandler(MauiContext);
565
if (!(FlyoutPage?.
Detail
is NavigationPage))
569
(FlyoutPage.
Detail
?.Handler as IPlatformViewHandler)
590
if (((FlyoutPage)Element).
Detail
?.Handler is IPlatformViewHandler nvh)
600
if (((FlyoutPage)Element).
Detail
?.Handler is IPlatformViewHandler nvh)
800
var detailView = ((IPlatformViewHandler)FlyoutPage.
Detail
.Handler).ViewController.View;
Compatibility\Handlers\NavigationPage\iOS\NavigationRenderer.cs (1)
404
if (flyoutDetail != null && parentPages.Append((Page)Element).Contains(flyoutDetail.
Detail
))
FlyoutPage\FlyoutPage.cs (7)
13
[ContentProperty(nameof(
Detail
))]
197
if (Flyout == null ||
Detail
== null)
209
Detail
?.SendAppearing();
219
Detail
?.SendDisappearing();
241
if (
Detail
.SendBackButtonPressed())
251
if (RealParent != null && (Flyout == null ||
Detail
== null))
351
IView IFlyoutView.Detail => this.
Detail
;
Menu\MenuItemTracker.cs (4)
118
if (flyoutDetail.
Detail
!= null)
119
result.AddRange(GetCurrentToolbarItems(flyoutDetail.
Detail
));
126
if (flyoutDetail.
Detail
!= null)
127
result.AddRange(GetCurrentToolbarItems(flyoutDetail.
Detail
));
Platform\PageExtensions.cs (1)
14
return GetCurrentPage(fp.
Detail
);