我的 xaml 中有一个复选框
<CheckBox Grid.Row="1" Command="{Binding ShowCancelledPropertiesCommand}" HorizontalAlignment="Right" Margin="0,6,160,0"/>
以下是视图模型中命令的设置
Me.ShowCancelledPropertiesCommand = New DelegateCommand(AddressOf ShowCancelledPropertiesClicked, AddressOf ShowCancelledPropertiesCanExecute)
我不明白为什么命令没有被解雇?