I am writing my UI mostly in XAML without a WYSIWYG editor.
In Grids you can do:
<TextBox Grid.Column="0" Grid.Row="0" ...
When creating a Grid coming from a HTML background I have been doing:
<TextBox Grid.Column="0" Grid.Row="0">
<Label Grid.Column="1" Grid.Row="0">
<TextBox Grid.Column="0" Grid.Row="1">
<Label Grid.Column="1" Grid.Row="1">
But ordering the XAML by columns just seems neater:
<TextBox Grid.Column="0" Grid.Row="0">
<TextBox Grid.Column="0" Grid.Row="1">
<Label Grid.Column="1" Grid.Row="0">
<Label Grid.Column="1" Grid.Row="1">
seems neater.
I'm just curious, how everyone else is doing it?