Browse Source

Add "Star" static to GridLength

pull/6175/head
Luis von der Eltz 5 years ago
parent
commit
5bea0e4791
  1. 6
      src/Avalonia.Controls/GridLength.cs

6
src/Avalonia.Controls/GridLength.cs

@ -77,6 +77,12 @@ namespace Avalonia.Controls
/// </summary>
public static GridLength Auto => new GridLength(0, GridUnitType.Auto);
/// <summary>
/// Gets an instance of <see cref="GridLength"/> that indicates that a row or column should
/// fill its content.
/// </summary>
public static GridLength Star => new GridLength(1, GridUnitType.Star);
/// <summary>
/// Gets the unit of the <see cref="GridLength"/>.
/// </summary>

Loading…
Cancel
Save