16 references to AbsoluteLayout
Microsoft.Maui.Controls (12)
Layout\AbsoluteLayout.cs (4)
16
/// child in order to display it flush with the left, right, top, or bottom of the <see cref="
AbsoluteLayout
" />. For width, height, X, or
39
typeof(AbsoluteLayoutFlags), typeof(
AbsoluteLayout
), AbsoluteLayoutFlags.None);
43
typeof(Rect), typeof(
AbsoluteLayout
), new Rect(0, 0, AutoSize, AutoSize), propertyChanged: LayoutBoundsPropertyChanged);
79
/// In XAML, application developers can specify one or more of the <see cref="AbsoluteLayoutFlags" /> enumeration value names for the value of this property on the children of a <see cref="
AbsoluteLayout
" />.
Layout\BoundsTypeConverter.cs (8)
38
w =
AbsoluteLayout
.AutoSize;
44
h =
AbsoluteLayout
.AutoSize;
48
return new Rect(x, y,
AbsoluteLayout
.AutoSize,
AbsoluteLayout
.AutoSize);
60
return $"{rect.X.ToString(CultureInfo.InvariantCulture)}, {rect.Y.ToString(CultureInfo.InvariantCulture)}, {(rect.Width ==
AbsoluteLayout
.AutoSize ? nameof(
AbsoluteLayout
.AutoSize) : rect.Width.ToString(CultureInfo.InvariantCulture))}, {(rect.Height ==
AbsoluteLayout
.AutoSize ? nameof(
AbsoluteLayout
.AutoSize) : rect.Height.ToString(CultureInfo.InvariantCulture))}";
Microsoft.Maui.Controls.Build.Tasks (4)
CompiledConverters\BoundsTypeConverter.cs (4)
36
w =
AbsoluteLayout
.AutoSize;
42
h =
AbsoluteLayout
.AutoSize;
48
w =
AbsoluteLayout
.AutoSize;
50
h =
AbsoluteLayout
.AutoSize;