RadioButton 컨트롤
[MainPage.xaml]
<UserControl x:Class="RiaRadioButton.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White">
<StackPanel>
<TextBlock Text="당신의 성별은?"></TextBlock>
<RadioButton Content="남자" IsChecked="True"></RadioButton>
<RadioButton Content="여자"></RadioButton>
<TextBlock Text="가장 좋아하는 언어는?"></TextBlock>
<RadioButton Content="C" IsChecked="True" GroupName="fav"></RadioButton>
<RadioButton Content="C++" GroupName="fav"></RadioButton>
<RadioButton Content="C#" GroupName="fav"></RadioButton>
</StackPanel>
</Grid>
</UserControl>