Esempio n. 1
0
 internal DocTreeBuilder(IApp app, DocControl control)
 {
     this.app = app;
     this.control = control;
     this.treeView = control.TreeView;
     this.treeView.ImageList.Images.Add("Book", Bitmaps.Load<NS>("Book"));
     this.treeView.ImageList.Images.Add("Article", Bitmaps.Load<NS>("Article"));
     this.treeView.BeforeExpand += BeforeExpand;
     this.treeView.NodeMouseDoubleClick += NodeMouseDoubleClick;
 }
Esempio n. 2
0
 internal DocTreeBuilder(IApp app, DocControl control)
 {
     this.app = app;
     this.control = control;
     this.treeView = control.TreeView;
     this.treeView.ImageList.Images.Add("Book", Bitmaps.Load<NS>("Book"));
     this.treeView.ImageList.Images.Add("Article", Bitmaps.Load<NS>("Article"));
     this.treeView.BeforeExpand += BeforeExpand;
     this.treeView.NodeMouseDoubleClick += NodeMouseDoubleClick;
 }
Esempio n. 3
0
 public DocumentationView()
 {
     control = new DocControl();
 }
Esempio n. 4
0
 public DocumentationView()
 {
     control = new DocControl();
 }