开发者

Why could not do OneWay binding to ToggleButton IsChecked property?

开发者 https://www.devze.com 2023-02-08 10:10 出处:网络
ToggleButton support ICommand, so I create many command such TogglePlayPause, ToggleMute and it work fine but i need to bind IsChecked property too so its checked state always show correct state. but

ToggleButton support ICommand, so I create many command such TogglePlayPause, ToggleMute and it work fine but i need to bind IsChecked property too so its checked state always show correct state. but when I create OneWay binding mode for ToggleButton and when I Press ToggleButton, the binding will lost.

The question is why ToggleButton support ICommand but does not support OneWay binding? I can set TwoWay binding, but it is bad idea when ToggleButton use Command, because the actual operation handled by Command and it should not be duplicated with TwoWay binding, also some times it is not possible. in my case Command=TogglePlayPause IsChecked={Bind to IsMediaPlaying} IsMediaPlaying should 开发者_StackOverflow中文版be readonly.

So please tell me how use ToggleButton with Command and bind its IsChecked property?


You can write your own OneWayToggleButton by deriving from ToggleButton and override what happens when the button is clicked:

public class OneWayToggleButton : ToggleButton
{
    protected override void OnClick()
    {
        RaiseEvent(new RoutedEventArgs(ClickEvent, this));
        if (Command != null && Command.CanExecute(CommandParameter))
            Command.Execute(CommandParameter);
    }
}

and then IsChecked won't be modified by the button itself and can only be changed via the binding. But because we are still using the IsChecked property of the ToggleButton, the control will look and behave normally.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号