33 references to Page
Microsoft.Maui.Controls (33)
Compatibility\Handlers\FlyoutPage\iOS\PhoneFlyoutPageRenderer.cs (2)
369
else if (e.PropertyName == PlatformConfiguration.iOSSpecific.
Page
.PrefersHomeIndicatorAutoHiddenProperty.PropertyName ||
370
e.PropertyName == PlatformConfiguration.iOSSpecific.
Page
.PrefersStatusBarHiddenProperty.PropertyName)
Compatibility\Handlers\NavigationPage\iOS\NavigationRenderer.cs (3)
20
using static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.
Page
;
599
PageUIStatusBarAnimation animation = PlatformConfiguration.iOSSpecific.
Page
.PreferredStatusBarUpdateAnimation(((Page)Element).OnThisPlatform());
600
PlatformConfiguration.iOSSpecific.
Page
.SetPreferredStatusBarUpdateAnimation(Current.OnThisPlatform(), animation);
Compatibility\Handlers\TabbedPage\iOS\TabbedRenderer.cs (1)
12
using static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.
Page
;
ContentPage\ContentPage.Mapper.cs (2)
16
PageHandler.Mapper.ReplaceMapping<ContentPage, IPageHandler>(PlatformConfiguration.iOSSpecific.
Page
.PrefersHomeIndicatorAutoHiddenProperty.PropertyName, MapPrefersHomeIndicatorAutoHidden);
17
PageHandler.Mapper.ReplaceMapping<ContentPage, IPageHandler>(PlatformConfiguration.iOSSpecific.
Page
.PrefersStatusBarHiddenProperty.PropertyName, MapPrefersStatusBarHidden);
FlyoutPage\FlyoutPage.Mapper.cs (4)
13
FlyoutViewHandler.Mapper.ReplaceMapping<IFlyoutView, IFlyoutViewHandler>(nameof(PlatformConfiguration.iOSSpecific.
Page
.PrefersHomeIndicatorAutoHiddenProperty), MapPrefersHomeIndicatorAutoHiddenProperty);
14
FlyoutViewHandler.Mapper.ReplaceMapping<IFlyoutView, IFlyoutViewHandler>(nameof(PlatformConfiguration.iOSSpecific.
Page
.PrefersStatusBarHiddenProperty), MapPrefersPrefersStatusBarHiddenProperty);
26
handler.UpdateValue(nameof(PlatformConfiguration.iOSSpecific.
Page
.PrefersHomeIndicatorAutoHiddenProperty));
31
handler.UpdateValue(nameof(PlatformConfiguration.iOSSpecific.
Page
.PrefersStatusBarHiddenProperty));
Page\Page.cs (3)
218
if (Parent is Page page && page.IsSet(PlatformConfiguration.iOSSpecific.
Page
.PrefersHomeIndicatorAutoHiddenProperty))
230
if (Parent is Page page && page.IsSet(PlatformConfiguration.iOSSpecific.
Page
.PrefersHomeIndicatorAutoHiddenProperty))
242
if (Parent is Page page && page.IsSet(PlatformConfiguration.iOSSpecific.
Page
.PrefersHomeIndicatorAutoHiddenProperty))
PlatformConfiguration\iOSSpecific\NavigationPage.cs (2)
91
public static readonly BindableProperty PrefersLargeTitlesProperty = BindableProperty.Create(nameof(PrefersLargeTitles), typeof(bool), typeof(
Page
), false);
121
public static readonly BindableProperty HideNavigationBarSeparatorProperty = BindableProperty.Create(nameof(HideNavigationBarSeparator), typeof(bool), typeof(
Page
), false);
PlatformConfiguration\iOSSpecific\Page.cs (12)
17
BindableProperty.Create("PrefersStatusBarHidden", typeof(StatusBarHiddenMode), typeof(
Page
), StatusBarHiddenMode.Default);
65
BindableProperty.Create("PreferredStatusBarUpdateAnimation", typeof(UIStatusBarAnimation), typeof(
Page
), UIStatusBarAnimation.None);
118
public static readonly BindableProperty UseSafeAreaProperty = BindableProperty.Create("UseSafeArea", typeof(bool), typeof(
Page
), true);
166
public static readonly BindableProperty LargeTitleDisplayProperty = BindableProperty.Create(nameof(LargeTitleDisplay), typeof(LargeTitleDisplayMode), typeof(
Page
), LargeTitleDisplayMode.Automatic);
210
static readonly BindablePropertyKey SafeAreaInsetsPropertyKey = BindableProperty.CreateReadOnly(nameof(SafeAreaInsets), typeof(Thickness), typeof(
Page
), default(Thickness));
256
/// Defines the modal presentation style of the <see cref="
Page
"/>.
259
BindableProperty.Create(nameof(ModalPresentationStyle), typeof(UIModalPresentationStyle), typeof(
Page
), UIModalPresentationStyle.FullScreen);
262
/// Gets the modal presentation style of the <see cref="
Page
"/>.
272
/// Sets the modal presentation style of the <see cref="
Page
"/>.
284
/// Gets the current value of the <see cref="UIModalPresentationStyle"/> enumeration that's applied to the <see cref="
Page
"/>.
294
/// Sets the modal presentation style on a <see cref="
Page
"/>.
305
BindableProperty.Create(nameof(PrefersHomeIndicatorAutoHidden), typeof(bool), typeof(
Page
), false);
TabbedPage\TabbedPage.iOS.cs (2)
44
view.CurrentPage.Handler.UpdateValue(nameof(PlatformConfiguration.iOSSpecific.
Page
.PrefersHomeIndicatorAutoHiddenProperty));
49
view.CurrentPage.Handler.UpdateValue(nameof(PlatformConfiguration.iOSSpecific.
Page
.PrefersStatusBarHiddenProperty));
TabbedPage\TabbedPage.Mapper.cs (2)
31
TabbedViewHandler.Mapper.ReplaceMapping<TabbedPage, ITabbedViewHandler>(nameof(PlatformConfiguration.iOSSpecific.
Page
.PrefersHomeIndicatorAutoHiddenProperty), MapPrefersHomeIndicatorAutoHiddenProperty);
32
TabbedViewHandler.Mapper.ReplaceMapping<TabbedPage, ITabbedViewHandler>(nameof(PlatformConfiguration.iOSSpecific.
Page
.PrefersStatusBarHiddenProperty), MapPrefersPrefersStatusBarHiddenProperty);