1
0

RadioButtonPage.xaml 596 B

123456789101112131415
  1. <UserControl xmlns="https://github.com/avaloniaui">
  2. <StackPanel Orientation="Vertical" Gap="4">
  3. <TextBlock Classes="h1">RadioButton</TextBlock>
  4. <TextBlock Classes="h2">Allows the selection of a single option of many</TextBlock>
  5. <StackPanel Orientation="Vertical"
  6. Margin="0,16,0,0"
  7. HorizontalAlignment="Center"
  8. Gap="16">
  9. <RadioButton IsChecked="True">Option 1</RadioButton>
  10. <RadioButton>Option 2</RadioButton>
  11. <RadioButton IsEnabled="False">Disabled</RadioButton>
  12. </StackPanel>
  13. </StackPanel>
  14. </UserControl>