6 references to End
Microsoft.Maui.Controls (6)
LayoutAlignmentExtensions.cs (1)
15
case LayoutAlignment.
End
:
LayoutOptions.cs (3)
17
public static readonly LayoutOptions End = new LayoutOptions(LayoutAlignment.
End
, false);
31
public static readonly LayoutOptions EndAndExpand = new LayoutOptions(LayoutAlignment.
End
, true);
68
case LayoutAlignment.
End
:
LayoutOptionsConverter.cs (2)
68
if (options.Alignment == LayoutAlignment.
End
)
69
return $"{nameof(LayoutAlignment.
End
)}{(options.Expands ? "AndExpand" : "")}";