虽然我已经找到了这个问题的几个答案,但我还是不明白。所以请原谅我问。
我有一个遵循 MVVM 模式的 WPF 应用程序。它包含一个绑定到视图模型中的命令的按钮:
<button Content="Login" Command="{Binding ProjectLoginCommand}"/>
命令正在使用RelayCommand
. 现在我想做以下事情:
- 用户点击按钮,执行相应的命令。这行得通。
- 在该命令中,另一个按钮将被禁用,即它不能被点击。
我发现这应该是可能的,CanExecute
但说实话:我根本不明白。我可以将按钮设置为启用/禁用吗?
这是RelayCommand.cs
:
namespace MyApp.Helpers {
class RelayCommand : ICommand {
readonly Action<object> execute;
readonly Predicate<object> canExecute;
public RelayCommand(Action<object> execute) : this(execute, null) {
}
public RelayCommand(Action<object> execute, Predicate<object> canExecute)
{
if (execute == null)
throw new ArgumentNullException("execute");
this.execute = execute;
this.canExecute = canExecute;
}
public bool CanExecute(object parameter)
{
return canExecute == null ? true : canExecute(parameter);
}
public event EventHandler CanExecuteChanged
{
add { CommandManager.RequerySuggested += value; }
remove { CommandManager.RequerySuggested -= value; }
}
public void Execute(object parameter)
{
execute(parameter);
}
}
}
这就是我调用命令的方式:
RelayCommand getProjectListCommand;
public ICommand GetProjectListCommand {
get {
if (getProjectListCommand == null) {
getProjectListCommand = new RelayCommand(param => this.ProjectLogin());
}
return getProjectListCommand;
}
}