Browse Source
Merge branch 'master' into more-to-strin-devtools
pull/6176/head
Max Katz
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
0 deletions
-
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>
|
|
|
|
|