I tried using a parameter with Catel's Command:
public Command MyCommand { get; private set; }
MyCommand = new Command(MyCommand_Execute);
private void MyCommand_Execute(object parameter)
{
}
and get the following error:
The best overloaded method match for 'Catel.MVVM.Command.Command(System.Action, System.Func, object)' has some invalid arguments
I followed the sample Catel code, any ideas?