在 IsChecked RadioButton 上绑定命令 属性
Bind command on IsChecked RadioButton property
我正在使用 Xamarin.Forms 5,我需要将命令绑定到 IsChecked radioButton 属性。
我怎样才能做到这一点?
我尝试在 IsFocused 事件上添加一个行为,因为 IsChecked 事件不存在,就像这样,但没有任何反应:
<RadioButton.Behaviors>
<behaviors:EventToCommandBehavior EventName="IsFocused" Command="{Binding ChangeStateCommand}" CommandParameter="V"/>
</RadioButton.Behaviors>
如果你想运行状态改变时的命令那么你可以使用事件CheckedChanged
<RadioButton>
<RadioButton.Behaviors>
<behaviors:EventToCommandBehavior EventName="CheckedChanged" Command="{Binding ChangeStateCommand}" CommandParameter="V"/>
</RadioButton.Behaviors>
</RadioButton>
我正在使用 Xamarin.Forms 5,我需要将命令绑定到 IsChecked radioButton 属性。 我怎样才能做到这一点? 我尝试在 IsFocused 事件上添加一个行为,因为 IsChecked 事件不存在,就像这样,但没有任何反应:
<RadioButton.Behaviors>
<behaviors:EventToCommandBehavior EventName="IsFocused" Command="{Binding ChangeStateCommand}" CommandParameter="V"/>
</RadioButton.Behaviors>
如果你想运行状态改变时的命令那么你可以使用事件CheckedChanged
<RadioButton>
<RadioButton.Behaviors>
<behaviors:EventToCommandBehavior EventName="CheckedChanged" Command="{Binding ChangeStateCommand}" CommandParameter="V"/>
</RadioButton.Behaviors>
</RadioButton>