4

据我所知,下面的代码可以从 Relay/ICommand Command 更改为 Delegate 命令,并且仍然以相同的方式绑定命令!如果我错了,它们的区别和用途是什么。

private DelegateCommand something;
public DelegateCommand Something

这是完整的实现

private RelayCommand something;
public ICommand Something
{
    get
    {
        if (something == null)
            something = new RelayCommand(SomethingMethod, CanSomething);
        return something;
    }
}

private bool CanSomething(object parameter)
{
    //just for readability return true
    return true;
}

private void SomethingMethod(object parameter)
{
    using (DatabaseContext context = new DatabaseContext())      
    {
        try { }
        catch(Exception ex)
        {
            throw new ApplicationException(string.Format("Something {0} to {1}", file, directory), ex);
        }
    }
}
4

1 回答 1

17

既不DelegateCommand也不RelayCommand存在于框架本身。它们由第三方库提供。

两者都是ICommand通过接受委托并使用委托来提供实现的ICommand实现。因此,这两个类具有相同的意图,并且以基本相同的方式工作。

至于差异 - 可能存在一些细微的差异,具体取决于您使用的框架。例如,PrismDelegateCommand<T>也有 的概念IActiveAware,用于构建复合命令。

于 2013-06-07T15:59:40.513 回答