我创建了一个从ICommand
扩展的类X.public class X: ICommand
{
public bool CanExecute(object parameter)
{
return true;
}
public event EventHandler CanExecuteChanged;
public void Execute(object parameter)
{
//DO SOMETHING.
}
}
我正在尝试将此类作为ViewModel中的命令。
public ICommand XCommand{ get; set; }
在我的照片中:
XCommand= CommandRepository.Instance.GetCommand(typeof(X));
我可以对{X}进行typeof
因为它为空,为什么?