I am writing my UI mostly in XAML without a wysiwyg
in grids you can do
<textbox Grid.Column="0" Grid.Row="0" ...
when creating a grid comming 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.
just curious how everyone else is doing it.