如何在WPF中选择的单选按钮选项卡

时间:2020-04-20 02:49:45

标签: c# wpf

在一个简单的对话框中,我有5个Radio Buttons,现在将IsTabStop设置为IsChecked,因此我可以将TAB设置为我拥有的Radio Button已选择。但是我无法通过[UP][Down]键盘切换到其他按钮。

这是我有关单选按钮的代码:

<RadioButton x:uid="RadioButton_1"
             Margin="3"
             HorizontalAlignment="Left"
             IsTabStop="{Binding IsChecked}"
             IsChecked="{Binding IsChecked}"
             IsEnabled="{Binding IsEnabled}"
             Command="{Binding RBCommand}">
         <TextBlock x:Uid="TextBlock_1"
                    HorizontalAlignment="Left"
                    TextWrappinig="wrap"
                    Text="{Binding Path=ShowName}"/>
</RadioButton>

反正可以通过Radio Button[Down]键盘切换到其他[Up]吗?

谢谢。

0 个答案:

没有答案