コード例 #1
0
ファイル: CommandProcessor.cs プロジェクト: mavaa/vimsox
 public CommandProcessor(ISolutionExplorerControl solutionExplorerControl, ILogger logger, IContext initialContext = null)
 {
     this.solutionExplorerControl = solutionExplorerControl;
     this.logger  = logger;
     this.context = initialContext ?? new Context();
     this.InitializeCommands();
 }
コード例 #2
0
ファイル: MoveLeftCommand.cs プロジェクト: mavaa/vimsox
 public MoveLeftCommand(ISolutionExplorerControl solutionExplorerControl)
 {
     this.solutionExplorerControl = solutionExplorerControl;
 }
コード例 #3
0
ファイル: MoveBottomCommand.cs プロジェクト: mavaa/vimsox
 public MoveBottomCommand(ISolutionExplorerControl solutionExplorerControl)
 {
     this.solutionExplorerControl = solutionExplorerControl;
 }