我最近在WPF中编程很多,但我的View和ViewModel在这一点上并不是分开的。嗯,这是部分原因。我所有与文本框中的文本,标签内容,数据网格中的列表,......相关的绑定都是由包含NotifyPropertyChanged事件的常规属性完成的。
我处理按钮点击或文本更改内容的所有事件都是通过链接事件来完成的。现在,我想开始使用命令并找到这篇文章:http://www.codeproject.com/Articles/126249/MVVM-Pattern-in-WPF-A-Simple-Tutorial-for-Absolute。它解释了如何设置MVVM,但我对RelayCommand
感到困惑。
它做什么工作? 它对我表单中的所有命令都可用吗? 如果(a)未填写某些文本框,如何禁用该按钮?
编辑1:
对“我的表单中的所有命令都可用吗?”的一个很好的解释。在这里回答:https://stackoverflow.com/a/22286816/3357699
答案 0 :(得分:63)
命令用于分离语义和从执行命令的逻辑调用命令的对象,即它将UI组件与需要在命令调用上执行的逻辑分开。因此,您可以使用测试用例单独测试业务逻辑,并且您的UI代码与业务逻辑松散耦合。
现在,我们一个接一个地选择你的问题:
它做了什么工作?
我已添加上述详细信息。希望它能清除命令的使用。
它可用于表单中的所有命令吗?
某些控件暴露了Command DependencyProperty,如Button,MenuItem等,它们注册了一些默认事件。对于Button,它是Click
事件。因此,如果将ViewModel中声明的ICommand
与Button的Command DP绑定,则只要单击按钮就会调用它。
对于其他事件,您可以使用Interactivity triggers
进行绑定。请参阅示例here如何使用它们绑定到ViewModel中的ICommand
。
如果(a)某些文本框不是,则如何禁用该按钮 填写?
您发布的链接未提供RelayCommand
的完整实施。它没有重载的构造函数来设置CanExecute
谓词,它在启用/禁用命令绑定到的UI控件中起着关键作用。
将文本框与ViewModel和CanExecute
委托中的某些属性绑定如果任何绑定属性为null或为空,则会返回false,这会自动禁用绑定到哪个命令的控件。
全面实施RelayCommand
:
public class RelayCommand<T> : ICommand
{
#region Fields
readonly Action<T> _execute = null;
readonly Predicate<T> _canExecute = null;
#endregion
#region Constructors
/// <summary>
/// Initializes a new instance of <see cref="DelegateCommand{T}"/>.
/// </summary>
/// <param name="execute">Delegate to execute when Execute is called on the command. This can be null to just hook up a CanExecute delegate.</param>
/// <remarks><seealso cref="CanExecute"/> will always return true.</remarks>
public RelayCommand(Action<T> execute)
: this(execute, null)
{
}
/// <summary>
/// Creates a new command.
/// </summary>
/// <param name="execute">The execution logic.</param>
/// <param name="canExecute">The execution status logic.</param>
public RelayCommand(Action<T> execute, Predicate<T> canExecute)
{
if (execute == null)
throw new ArgumentNullException("execute");
_execute = execute;
_canExecute = canExecute;
}
#endregion
#region ICommand Members
///<summary>
///Defines the method that determines whether the command can execute in its current state.
///</summary>
///<param name="parameter">Data used by the command. If the command does not require data to be passed, this object can be set to null.</param>
///<returns>
///true if this command can be executed; otherwise, false.
///</returns>
public bool CanExecute(object parameter)
{
return _canExecute == null ? true : _canExecute((T)parameter);
}
///<summary>
///Occurs when changes occur that affect whether or not the command should execute.
///</summary>
public event EventHandler CanExecuteChanged
{
add { CommandManager.RequerySuggested += value; }
remove { CommandManager.RequerySuggested -= value; }
}
///<summary>
///Defines the method to be called when the command is invoked.
///</summary>
///<param name="parameter">Data used by the command. If the command does not require data to be passed, this object can be set to <see langword="null" />.</param>
public void Execute(object parameter)
{
_execute((T)parameter);
}
#endregion
}
答案 1 :(得分:5)
使用relay命令的好处是您可以将命令直接绑定到ViewModel。通过以这种方式使用命令,您可以避免在视图代码隐藏中编写代码。
使用中继命令时,您必须提供两种方法。第一个提供一个值是否可以执行命令(例如“CanExecuteSave”),而另一个将负责执行命令(“ExecuteSave”)。