gpt4 book ai didi

c# - 事件 'Command.CanExecuteChanged' 只能出现在 += 或 -= 的左侧

转载 作者:行者123 更新时间:2023-12-03 22:20:20 24 4
gpt4 key购买 nike

我的 Command-ViewModel 中是否缺少某些内容?

 public class Command : ICommand
{
public Command(Action execute, Func<bool> canExecute = null)
{
this.execute = execute;
this.canExecute = canExecute ?? new Func<bool>(() => true);
}
private Action execute;
private Func<bool> canExecute;
public event EventHandler CanExecuteChanged;

public bool CanExecute(object parameter)
{
return canExecute.Invoke();
}

public void Execute(object parameter)
{
execute?.Invoke();
}
}

每次我想在我的 MainViewModel 中使用 CanExecuteChanged 时,都使用这行代码 ((Command)MyCommand).CanExecuteChanged();给我这个错误事件'Command.CanExecuteChanged'只能出现在+=或-=的左侧

最佳答案

CanExecuteChanged 是一个事件。你只能这样使用它:

YourCommand.CanExecuteChanged += (sender, args) =>
{
// Do your magic here
};

关于c# - 事件 'Command.CanExecuteChanged' 只能出现在 += 或 -= 的左侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51780188/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com