标签: c# icommand
我对以下代码有疑问:
public void Destroy() { this.canExecute = _ => false; this.execute = _ => { return; }; }
我复制/粘贴this code重新使用ICommands, 但我无法弄清楚为什么作者选择这样做。
为什么不呢:
this.canExecute = false;