WPF - Radio button, how to move focus after selection?

时间:2016-08-31 18:07:58

标签: c# wpf radio-button

For the following buttons:

<RadioButton GroupName="Group1"
             IsChecked="{Binding Path=IsYes,
                                 Converter={StaticResource InverseBool},
                                 FallbackValue=True}"/>
<RadioButton GroupName="Group1"
             Content="_Yes"
             IsChecked="{Binding Path=IsYes,
                                 FallbackValue=False}"/>

When keyboard operated and hitting Y or N to select the option, how to move focus to the next control? Other than code behind

0 个答案:

没有答案