Advertisement
svexo

Untitled

May 24th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <Grid>
  2. <Grid.RowDefinitions>
  3. <RowDefinition />
  4. <RowDefinition />
  5. <RowDefinition />
  6. </Grid.RowDefinitions>
  7. <Grid.ColumnDefinitions>
  8. <ColumnDefinition />
  9. <ColumnDefinition />
  10. </Grid.ColumnDefinitions>
  11.  
  12. <!--Openenent-->
  13. <StackPanel Grid.Row="0" Grid.Column="0">
  14. <Label Content="Select oponenent:"></Label>
  15. <RadioButton Content="Player" ></RadioButton>
  16. <RadioButton Content="AI"></RadioButton>
  17. </StackPanel>
  18.  
  19. <!--Difficulty-->
  20. <StackPanel Grid.Row="0" Grid.Column="1" >
  21. <Label Content="Select Difficulty:"></Label>
  22. <RadioButton Content="Easy" ></RadioButton>
  23. <RadioButton Content="Medium"></RadioButton>
  24. <RadioButton Content="Hard"></RadioButton>
  25. <RadioButton Content="Expert"></RadioButton>
  26. </StackPanel>
  27.  
  28. <StackPanel>
  29.  
  30. </StackPanel>
  31. </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement