6 references to Start
Microsoft.Maui.Controls (6)
LayoutAlignmentExtensions.cs (1)
11 case LayoutAlignment.Start:
LayoutOptions.cs (3)
13 public static readonly LayoutOptions Start = new LayoutOptions(LayoutAlignment.Start, false); 23 public static readonly LayoutOptions StartAndExpand = new LayoutOptions(LayoutAlignment.Start, true); 64 case LayoutAlignment.Start:
LayoutOptionsConverter.cs (2)
64 if (options.Alignment == LayoutAlignment.Start) 65 return $"{nameof(LayoutAlignment.Start)}{(options.Expands ? "AndExpand" : "")}";