I have 2 RadioButton element on each row item of my ListView. If I put the IsChecked attribute on my 2 RadioButton, my WPF application does not allow me to select any of the RadioButton on every row item of my list. Did I miss something? or am I doing it wrong? Please enlighten me.
<StackPanel>
<RadioButton Content="{Binding choice1}" GroupName="{Binding number}" x:Name="btn_radio1" IsChecked="{Binding IsRadioChecked}"></RadioButton>
<RadioButton Content="{Binding choice2}" GroupName="{Binding number}" x:Name="btn_radio2" IsChecked="{Binding IsRadioChecked}"></RadioButton>
</StackPanel>