maui icon indicating copy to clipboard operation
maui copied to clipboard

[Enhancement] Support Min|Max Height|Width on Grid Column|Row Definition

Open YZahringer opened this issue 3 years ago • 18 comments

Summary

Support Minimum and Maximum Width/Height of Grid Column/Row definitions.

Same as WinUI:

API Changes

public class ColumnDefinition
{
    ...
    double MinWidth { get; set; }
    double MaxWidth { get; set; }
}

public class RowDefinition
{
    ...
    double MinHeight { get; set; }
    double MaxHeight { get; set; }
}

Intended Use Case

Define more responsive & dynamic Grid layout sizes

YZahringer avatar Apr 12 '21 17:04 YZahringer