0

如何取消选中/重置/清除一组单选按钮的选择,这些单选按钮在相同的组名下

我怎样才能在 MVVM 中实现这一点?

编辑 1:

 <RadioButton Grid.Row="1" Grid.Column="2" GroupName = "TransactSelect" IsEnabled="{Binding IsOnlyEnabled}" IsChecked="{Binding IsOnlyCancelVoidChecked}"></RadioButton>
 <RadioButton Grid.Row="2" Grid.Column="2" GroupName = "TransactSelect" IsEnabled="{Binding IsOnlyEnabled}" IsChecked="{Binding IsOnlySuspiciousChecked}"></RadioButton>
 <RadioButton Grid.Row="3" Grid.Column="2" GroupName = "TransactSelect" IsEnabled="{Binding IsOnlyEnabled}" IsChecked="{Binding IsOnlyDirectDebitChecked}"></RadioButton>
4

1 回答 1

2

我已经使用以下链接解决了我的问题。通过 MVVM 进行单选按钮绑定存​​在一些问题。

以下链接中讨论的已知问题:http:
//social.msdn.microsoft.com/forums/en-US/wpf/thread/8eb8280a-19c4-4502-8260-f74633a9e2f2/

所以,我从以下链接遵循了 karliwatson策略。

http://social.msdn.microsoft.com/forums/en-US/wpf/thread/8eb8280a-19c4-4502-8260-f74633a9e2f2/

于 2013-06-04T12:15:15.497 回答