6 references to Center
Microsoft.Maui.Controls (6)
LayoutAlignmentExtensions.cs (1)
13 case LayoutAlignment.Center:
LayoutOptions.cs (3)
15 public static readonly LayoutOptions Center = new LayoutOptions(LayoutAlignment.Center, false); 27 public static readonly LayoutOptions CenterAndExpand = new LayoutOptions(LayoutAlignment.Center, true); 66 case LayoutAlignment.Center:
LayoutOptionsConverter.cs (2)
66 if (options.Alignment == LayoutAlignment.Center) 67 return $"{nameof(LayoutAlignment.Center)}{(options.Expands ? "AndExpand" : "")}";