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