Example #1
0
 public override bool IsVisible(AsmEditorContext context) => ModuleSettingsCommand.CanExecute(context.Nodes);
Example #2
0
 public override void Execute(AsmEditorContext context) => ModuleSettingsCommand.Execute(undoCommandService, appService, context.Nodes);
Example #3
0
 public override void Execute(AsmEditorContext context)
 {
     ModuleSettingsCommand.Execute(undoCommandManager, appWindow, context.Nodes);
 }
Example #4
0
 protected override void ExecuteInternal(ILSpyTreeNode[] nodes)
 {
     ModuleSettingsCommand.Execute(nodes);
 }
Example #5
0
 protected override bool CanExecuteInternal(ILSpyTreeNode[] nodes)
 {
     return(ModuleSettingsCommand.CanExecute(nodes));
 }
Example #6
0
		CommandLoader(IWpfCommandManager wpfCommandManager, IFileTabManager fileTabManager, RemoveNetModuleFromAssemblyCommand.EditMenuCommand removeCmd, ModuleSettingsCommand.EditMenuCommand settingsCmd) {
			wpfCommandManager.AddRemoveCommand(removeCmd);
			wpfCommandManager.AddSettingsCommand(fileTabManager, settingsCmd, null);
		}
Example #7
0
		CommandLoader(IWpfCommandService wpfCommandService, IDocumentTabService documentTabService, RemoveNetModuleFromAssemblyCommand.EditMenuCommand removeCmd, ModuleSettingsCommand.EditMenuCommand settingsCmd) {
			wpfCommandService.AddRemoveCommand(removeCmd);
			wpfCommandService.AddSettingsCommand(documentTabService, settingsCmd, null);
		}