9 references to Star
Microsoft.Maui (3)
Layouts\GridLayoutManager.cs (1)
1191
GridUnitType.
Star
=> GridLengthType.Star,
Primitives\GridLength.cs (2)
18
public static readonly GridLength Star = new GridLength(1, GridUnitType.
Star
);
41
get { return GridUnitType == GridUnitType.
Star
; }
Microsoft.Maui.Controls (3)
GridLengthTypeConverter.cs (2)
29
return new GridLength(1, GridUnitType.
Star
);
31
return new GridLength(length, GridUnitType.
Star
);
Internals\ProfilePage.cs (1)
123
new RowDefinition { Height = new GridLength(1, GridUnitType.
Star
) },
Microsoft.Maui.Controls.Build.Tasks (1)
CompiledConverters\GridLengthTypeConverter.cs (1)
35
yield return Create(Ldc_I4, (int)GridUnitType.
Star
);
Microsoft.Maui.Controls.Foldable (2)
TwoPaneView.cs (2)
501
columnLeft.Width = new GridLength(1, GridUnitType.
Star
);
512
rowTop.Height = new GridLength(1, GridUnitType.
Star
);