0

我的 xaml 中有一个复选框

<CheckBox Grid.Row="1" Command="{Binding ShowCancelledPropertiesCommand}" HorizontalAlignment="Right" Margin="0,6,160,0"/>

以下是视图模型中命令的设置

Me.ShowCancelledPropertiesCommand = New DelegateCommand(AddressOf ShowCancelledPropertiesClicked, AddressOf ShowCancelledPropertiesCanExecute)

我不明白为什么命令没有被解雇?

4

1 回答 1

0

我会对复选框的 IsChecked 属性进行双向绑定。

IsChecked="{Binding somePropertyInViewModel, Mode=TwoWay}

在视图模型中,将一些逻辑放入属性中。

public bool somePropertyInViewModel
    {
        get { ... }
        set { ... }
    }
于 2013-06-05T16:13:54.250 回答