-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
API suggestionEarly API idea and discussion, it is NOT ready for implementationEarly API idea and discussion, it is NOT ready for implementation
Milestone
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>
dotMorten, Symbai, thomasclaudiushuber, shadowaltar, JohanLarsson and 24 more
Metadata
Metadata
Assignees
Labels
API suggestionEarly API idea and discussion, it is NOT ready for implementationEarly API idea and discussion, it is NOT ready for implementation