コード例 #1
0
 protected override void Execute(Context ctx)
 {
     DeletePropertyDefCommand.Execute(ctx.Nodes);
 }
コード例 #2
0
 protected override void ExecuteInternal(ILSpyTreeNode[] nodes)
 {
     DeletePropertyDefCommand.Execute(nodes);
 }
コード例 #3
0
 void DeleteExecuted(object sender, ExecutedRoutedEventArgs e)
 {
     DeletePropertyDefCommand.Execute(MainWindow.Instance.SelectedNodes);
 }
コード例 #4
0
ファイル: PropertyDefCommands.cs プロジェクト: zz110/dnSpy
 public override void Execute(AsmEditorContext context) => DeletePropertyDefCommand.Execute(undoCommandService, context.Nodes);
コード例 #5
0
 public override void Execute(AsmEditorContext context)
 {
     DeletePropertyDefCommand.Execute(undoCommandManager, context.Nodes);
 }
コード例 #6
0
 public override void Execute(CodeContext context) => DeletePropertyDefCommand.Execute(undoCommandManager, context.Nodes);