Closed
Description
Specifying Grid/ColumnDefinitions in markup is tedious. Avalonia came up with a really nice syntax that lets you specify them like this:
<Grid ColumnDefintions = "Auto,*,*" RowDefinitions="Auto,*,*" >
...
</Grid>
Instead of the old syntax:
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefintion Width="Auto"/>
<ColumnDefintion Width="*"/>
<ColumnDefintion Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
…
</Grid>