25 references to Page
Microsoft.Maui.Controls (14)
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);
120
public static readonly BindableProperty UseSafeAreaProperty = BindableProperty.Create("UseSafeArea", typeof(bool), typeof(
Page
), false);
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);
Microsoft.Maui.Controls.Compatibility (11)
iOS\Renderers\NavigationRenderer.cs (3)
16
using static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.
Page
;
551
PageUIStatusBarAnimation animation = PlatformConfiguration.iOSSpecific.
Page
.PreferredStatusBarUpdateAnimation(((Page)Element).OnThisPlatform());
552
PlatformConfiguration.iOSSpecific.
Page
.SetPreferredStatusBarUpdateAnimation(Current.OnThisPlatform(), animation);
iOS\Renderers\PageRenderer.cs (7)
11
using PageSpecific = Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.
Page
;
286
else if (e.PropertyName == PlatformConfiguration.iOSSpecific.
Page
.PrefersStatusBarHiddenProperty.PropertyName)
288
else if (Forms.IsiOS11OrNewer && e.PropertyName == PlatformConfiguration.iOSSpecific.
Page
.UseSafeAreaProperty.PropertyName)
293
else if (Forms.IsiOS11OrNewer && e.PropertyName == PlatformConfiguration.iOSSpecific.
Page
.SafeAreaInsetsProperty.PropertyName)
295
else if (e.PropertyName == PlatformConfiguration.iOSSpecific.
Page
.PrefersHomeIndicatorAutoHiddenProperty.PropertyName)
337
bool isSafeAreaSet = Element.IsSet(
PageSpecific
.UseSafeAreaProperty);
383
bool isSafeAreaSet = Element.IsSet(
PageSpecific
.UseSafeAreaProperty);
iOS\Renderers\TabbedRenderer.cs (1)
11
using static Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific.
Page
;