Ejemplo n.º 1
0
 public override void Execute(CodeContext context) => PropertyDefSettingsCommand.Execute(undoCommandManager, appWindow, context.Nodes);
Ejemplo n.º 2
0
 public override bool IsVisible(AsmEditorContext context) => PropertyDefSettingsCommand.CanExecute(context.Nodes);
Ejemplo n.º 3
0
 public override bool IsEnabled(CodeContext context) => PropertyDefSettingsCommand.CanExecute(context.Nodes);
Ejemplo n.º 4
0
 protected override bool CanExecute(Context ctx)
 {
     return(PropertyDefSettingsCommand.CanExecute(ctx.Nodes));
 }
Ejemplo n.º 5
0
 protected override void Execute(Context ctx)
 {
     PropertyDefSettingsCommand.Execute(ctx.Nodes);
 }
Ejemplo n.º 6
0
 protected override void ExecuteInternal(ILSpyTreeNode[] nodes)
 {
     PropertyDefSettingsCommand.Execute(nodes);
 }
Ejemplo n.º 7
0
 protected override bool CanExecuteInternal(ILSpyTreeNode[] nodes)
 {
     return(PropertyDefSettingsCommand.CanExecute(nodes));
 }
Ejemplo n.º 8
0
 public override void Execute(AsmEditorContext context)
 {
     PropertyDefSettingsCommand.Execute(undoCommandManager, appWindow, context.Nodes);
 }
Ejemplo n.º 9
0
 public override void Execute(CodeContext context) => PropertyDefSettingsCommand.Execute(undoCommandService, appService, context.Nodes);
Ejemplo n.º 10
0
		CommandLoader(IWpfCommandManager wpfCommandManager, IFileTabManager fileTabManager, DeletePropertyDefCommand.EditMenuCommand removeCmd, DeletePropertyDefCommand.CodeCommand removeCmd2, PropertyDefSettingsCommand.EditMenuCommand settingsCmd, PropertyDefSettingsCommand.CodeCommand settingsCmd2) {
			wpfCommandManager.AddRemoveCommand(removeCmd);
			wpfCommandManager.AddRemoveCommand(removeCmd2, fileTabManager);
			wpfCommandManager.AddSettingsCommand(fileTabManager, settingsCmd, settingsCmd2);
		}