8 references to LayoutOptions
Microsoft.Maui.Controls (8)
LayoutOptions.cs (8)
13
public static readonly LayoutOptions Start = new
LayoutOptions
(LayoutAlignment.Start, false);
15
public static readonly LayoutOptions Center = new
LayoutOptions
(LayoutAlignment.Center, false);
17
public static readonly LayoutOptions End = new
LayoutOptions
(LayoutAlignment.End, false);
19
public static readonly LayoutOptions Fill = new
LayoutOptions
(LayoutAlignment.Fill, false);
23
public static readonly LayoutOptions StartAndExpand = new
LayoutOptions
(LayoutAlignment.Start, true);
27
public static readonly LayoutOptions CenterAndExpand = new
LayoutOptions
(LayoutAlignment.Center, true);
31
public static readonly LayoutOptions EndAndExpand = new
LayoutOptions
(LayoutAlignment.End, true);
35
public static readonly LayoutOptions FillAndExpand = new
LayoutOptions
(LayoutAlignment.Fill, true);