RadioButtonPage.xaml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <StackPanel Orientation="Vertical" Spacing="4">
  4. <TextBlock Classes="h1">RadioButton</TextBlock>
  5. <TextBlock Classes="h2">Allows the selection of a single option of many</TextBlock>
  6. <StackPanel Orientation="Horizontal"
  7. Margin="0,16,0,0"
  8. HorizontalAlignment="Center"
  9. Spacing="16">
  10. <StackPanel Orientation="Vertical"
  11. Spacing="16">
  12. <RadioButton IsChecked="True">Option 1</RadioButton>
  13. <RadioButton>Option 2</RadioButton>
  14. <RadioButton IsChecked="{x:Null}">Option 3</RadioButton>
  15. <RadioButton IsEnabled="False">Disabled</RadioButton>
  16. </StackPanel>
  17. <StackPanel Orientation="Vertical"
  18. Spacing="16">
  19. <RadioButton IsChecked="True" IsThreeState="True">Three States: Option 1</RadioButton>
  20. <RadioButton IsChecked="False" IsThreeState="True">Three States: Option 2</RadioButton>
  21. <RadioButton IsChecked="{x:Null}" IsThreeState="True">Three States: Option 3</RadioButton>
  22. <RadioButton IsChecked="{x:Null}" IsThreeState="True" IsEnabled="False">Disabled</RadioButton>
  23. </StackPanel>
  24. <StackPanel Orientation="Vertical"
  25. Spacing="16">
  26. <RadioButton GroupName="A" IsChecked="True">Group A: Option 1</RadioButton>
  27. <RadioButton GroupName="A" IsEnabled="False">Group A: Disabled</RadioButton>
  28. <RadioButton GroupName="B">Group B: Option 1</RadioButton>
  29. <RadioButton GroupName="B" IsChecked="{x:Null}">Group B: Option 3</RadioButton>
  30. </StackPanel>
  31. <StackPanel Orientation="Vertical"
  32. Spacing="16">
  33. <RadioButton GroupName="A" IsChecked="True">Group A: Option 2</RadioButton>
  34. <RadioButton GroupName="B">Group B: Option 2</RadioButton>
  35. <RadioButton GroupName="B" IsChecked="{x:Null}">Group B: Option 4</RadioButton>
  36. </StackPanel>
  37. </StackPanel>
  38. </StackPanel>
  39. </UserControl>