コード例 #1
0
 public Presenter(DbMapper dbMapper, CodeVisualizer visualizerPane, CommandBinding gotoSourceCommandBinding, CommandBinding showContextMenuCommandBinding)
     : base(visualizerPane, gotoSourceCommandBinding, showContextMenuCommandBinding)
 {
     DbMapper = dbMapper;
     RefreshView(DbMapper.TreeItems);
 }
コード例 #2
0
ファイル: TreePresenter.cs プロジェクト: xydoublez/RDO.Net
 protected TreePresenter(CodeVisualizer codeVisualizer, params CommandBinding[] commandBindings)
 {
     _codeVisualizer = codeVisualizer;
     ViewToShow      = CreateDataView(commandBindings);
 }