Implemented interface member:
property
Padding
Microsoft.Maui.Controls.IPaddingElement.Padding
14 references to Padding
Microsoft.Maui.Controls (9)
Page\Page.cs (9)
58
/// <summary>Bindable property for <see cref="
Padding
"/>.</summary>
422
area.X +=
Padding
.Left;
423
area.Y +=
Padding
.Right;
424
area.Width -=
Padding
.HorizontalThickness;
425
area.Height -=
Padding
.VerticalThickness;
587
double x =
Padding
.Left;
588
double y =
Padding
.Top;
589
double w = Math.Max(0, Width -
Padding
.HorizontalThickness);
590
double h = Math.Max(0, Height -
Padding
.VerticalThickness);
Microsoft.Maui.Controls.Compatibility (5)
iOS\Renderers\PageRenderer.cs (5)
299
if (ShouldUseSafeArea() && Page.
Padding
!= SafeAreaInsets)
362
if (Page.
Padding
!= SafeAreaInsets)
363
_userPadding = Page.
Padding
;
391
if (!usingSafeArea && isSafeAreaSet && Page.
Padding
== safeareaPadding)
399
if (SafeAreaInsets == Page.
Padding
)