Guest User

Untitled

a guest
Oct 19th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Choice ObjectChoice = new Choice();
  2. var content = await ObjectChoice .ShowAsync();
  3.  
  4. <Grid>
  5. <Grid.RowDefinitions>
  6. <RowDefinition Height="*"/>
  7. <RowDefinition Height="*"/>
  8. </Grid.RowDefinitions>
  9. <RadioButton Grid.Row="0" GroupName="one" Content="Yes" Checked="RadioButton_Checked" />
  10. <RadioButton Grid.Row="1" GroupName="one" Content="No" Checked="RadioButton_Checked_1" IsChecked="True"/>
  11. </Grid>
Add Comment
Please, Sign In to add comment