3 writes to Left
Microsoft.Maui (1)
Primitives\Thickness.cs (1)
49
Left
= left;
Microsoft.Maui.Controls (2)
PaddingElement.cs (1)
30
padding.
Left
= (double)newValue;
View\View.cs (1)
48
margin.
Left
= (double)newValue;
40 references to Left
Microsoft.Maui (25)
Animations\AnimationLerpingExtensions.cs (2)
53
start.
Left
.Lerp(end.
Left
, progress),
Converters\ThicknessTypeConverter.cs (1)
98
return $"{t.
Left
.ToString(CultureInfo.InvariantCulture)}, {t.Top.ToString(CultureInfo.InvariantCulture)}, " +
Layouts\AbsoluteLayoutManager.cs (1)
64
double left = padding.
Left
+ bounds.Left;
Layouts\FlexLayoutManager.cs (1)
21
double left = padding.
Left
+ bounds.Left;
Layouts\GridLayoutManager.cs (1)
589
double left = _padding.
Left
;
Layouts\HorizontalStackLayoutManager.cs (1)
56
double xPosition = padding.
Left
+ bounds.Left;
Layouts\LayoutExtensions.cs (2)
87
return AlignHorizontal(bounds.X, margin.
Left
, margin.Right, bounds.Width, desiredWidth, alignment);
179
var targetBounds = new Rect(bounds.Left + padding.
Left
, bounds.Top + padding.Top,
Layouts\VerticalStackLayoutManager.cs (1)
51
double left = padding.
Left
+ bounds.X;
Primitives\Thickness.cs (10)
26
public double HorizontalThickness =>
Left
+ Right;
32
public bool IsEmpty =>
Left
== 0 && Top == 0 && Right == 0 && Bottom == 0;
34
public bool IsNaN => double.IsNaN(
Left
) && double.IsNaN(Top) && double.IsNaN(Right) && double.IsNaN(Bottom);
67
return
Left
.Equals(other.
Left
) && Top.Equals(other.Top) && Right.Equals(other.Right) && Bottom.Equals(other.Bottom);
83
int hashCode =
Left
.GetHashCode();
104
left =
Left
;
113
new Thickness(left.
Left
+ addend, left.Top + addend, left.Right + addend, left.Bottom + addend);
116
new Thickness(left.
Left
+ right.
Left
, left.Top + right.Top, left.Right + right.Right, left.Bottom + right.Bottom);
VisualDiagnostics\AdornerModel.cs (5)
46
if (!Tolerances.NearZero(margin.
Left
))
49
rc.Left = Math.Min(rect.Left - margin.
Left
, rect.Left);
50
rc.Width = Math.Abs(margin.
Left
);
71
rc.Left = rect.Left - Math.Max(0, margin.
Left
);
82
rc.Left = rect.Left - Math.Max(0, margin.
Left
);
Microsoft.Maui.Controls (10)
LegacyLayouts\FlexLayout.cs (2)
380
item.MarginLeft = (float)margin.
Left
;
394
item.PaddingLeft = (float)padding.
Left
;
LegacyLayouts\Layout.cs (3)
272
region.X += margin.
Left
;
458
double x = Padding.
Left
;
537
region.X += margin.
Left
;
LegacyLayouts\StackLayout.cs (1)
90
CalculateLayout(_layoutInformation, padding.
Left
, padding.Top, widthConstraint, heightConstraint, false);
Page\Page.cs (2)
424
area.X += Padding.
Left
;
589
double x = Padding.
Left
;
Region.cs (2)
88
return Inflate(_inflation.Value.
Left
* -1, _inflation.Value.Top * -1, _inflation.Value.Right * -1, _inflation.Value.Bottom * -1);
118
var inflation = new Thickness(_inflation == null ? left : left + _inflation.Value.
Left
,
Microsoft.Maui.Controls.Compatibility (5)
iOS\CollectionView\CarouselViewLayout.cs (2)
23
var width = size.Width - _carouselView.PeekAreaInsets.
Left
- _carouselView.PeekAreaInsets.Right;
47
var left = insets.Left + (float)_carouselView.PeekAreaInsets.
Left
;
iOS\Renderers\ButtonLayoutManager.cs (1)
296
(nfloat)_element.Padding.
Left
+ defaultPadding.Left + adjustments.Left,
iOS\Renderers\ImageButtonRenderer.cs (1)
105
(float)(Element.Padding.
Left
),
iOS\Renderers\LabelRenderer.cs (1)
687
(float)Element.Padding.
Left
,