行动:
readonly Action _execute;
public RelayCommand(Action execute)
: this(execute, null)
{
}
public RelayCommand(Action execute, Func<Boolean> canExecute)
{
if (execute == null)
throw new ArgumentNullException("execute");
_execute = execute;
_canExecute = canExecute;
}
其他班级代码:
public void CreateCommand()
{
RelayCommand command = new RelayCommand((param)=> RemoveReferenceExcecute(param));}
}
private void RemoveReferenceExcecute(object param)
{
ReferenceViewModel referenceViewModel = (ReferenceViewModel) param;
ReferenceCollection.Remove(referenceViewModel);
}
为什么我会收到以下异常,我该如何解决?
委托'System.Action'不带1个参数
答案 0 :(得分:8)
System.Action
是无参数函数的委托。使用System.Action<T>
。
要解决此问题,请使用以下内容替换您的RelayAction
课程
class RelayAction<T> {
readonly Action<T> _execute;
public RelayCommand(Action<T> execute, Func<Boolean> canExecute){
//your code here
}
// the rest of the class definition
}
注意RelayAction
类应该是通用的。另一种方法是直接指定将接收的参数_execute
的类型,但这样您将限制使用RelayAction
类。因此,在灵活性和稳健性之间存在一些权衡。
一些MSDN链接:
答案 1 :(得分:0)
您可以定义命令'RemoveReferenceExcecute',而无需任何参数
RelayCommand command = new RelayCommand(RemoveReferenceExcecute);}
或者您可以向其中传递一些参数/对象:
RelayCommand<object> command = new RelayCommand<object>((param)=> RemoveReferenceExcecute(param));}
在第二种情况下,请不要忘记从您的视图中传递CommandParameter;