protected override void ExecuteInternal(ILSpyTreeNode[] nodes) { DeleteNamespaceCommand.Execute(nodes); }
void DeleteExecuted(object sender, ExecutedRoutedEventArgs e) { DeleteNamespaceCommand.Execute(MainWindow.Instance.SelectedNodes); }
protected override bool CanExecuteInternal(ILSpyTreeNode[] nodes) { return(DeleteNamespaceCommand.CanExecute(nodes)); }
void DeleteCanExecute(object sender, CanExecuteRoutedEventArgs e) { e.CanExecute = DeleteNamespaceCommand.CanExecute(MainWindow.Instance.SelectedNodes); }