Skip to content
This repository was archived by the owner on Jul 11, 2023. It is now read-only.

Latest commit

 

History

History
33 lines (25 loc) · 1.06 KB

radiobutton.md

File metadata and controls

33 lines (25 loc) · 1.06 KB

RadioButton

The RadioButton control allows users to select one or more things from a collection of presented things.

<!-- First Group -->
<RadioButton IsChecked="{Binding Option1Enabled }"
             GroupName="First Group"
             Content="First Option"/>
<RadioButton IsChecked="{Binding Option2Enabled }"
             GroupName="First Group"
             Content="Second Option"/>
<RadioButton IsChecked="{Binding Option3Enabled }"
             GroupName="First Group"
             Content="Third Option"/>

<!-- Second Group -->
<RadioButton IsChecked="{Binding Option4Enabled }"
             GroupName="Second Group"
             Content="Fourth Option"/>
<RadioButton IsChecked="{Binding Option5Enabled }"
             GroupName="Second Group"
             Content="Fifth Option"/>

Reference

RadioButton

Source code

RadioButton.cs