Guest User

Untitled

a guest
Nov 21st, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <Grid>
  2. <Grid.RowDefinitions>
  3. <RowDefinition Height="10*"/>
  4. ...
  5. </Grid.RowDefinitions>
  6. <Grid.ColumnDefinitions>
  7. <ColumnDefinition Width="2*"/>
  8. ...
  9. </Grid.ColumnDefinitions>
  10. <Label Grid.Column="0" Grid.Row="0">Civilité</Label>
  11. <ComboBox Grid.Column="1" Grid.Row="0"/>
  12. ...
  13. <Label Grid.Column="2" Grid.Row="5">Commune</Label>
  14. <TextBox Grid.Column="3" Grid.Row="5"/>
  15. <!-- I'd like to put the ListBox under this TextBox -->
  16. </Grid>
Add Comment
Please, Sign In to add comment