Пример #1
0
 public ToolWindowGroup(IToolWindowGroupManager toolWindowGroupManager, ITabGroup tabGroup)
 {
     this.ToolWindowGroupManager = toolWindowGroupManager;
     this.TabGroup     = tabGroup;
     this.TabGroup.Tag = this;
     this.TabGroup.TabContentAttached += TabGroup_TabContentAttached;
 }
Пример #2
0
 public ToolWindowGroup(IToolWindowGroupManager toolWindowGroupManager, ITabGroup tabGroup)
 {
     this.toolWindowGroupManager = toolWindowGroupManager;
     this.tabGroup = tabGroup;
     this.tabGroup.Tag = this;
     this.tabGroup.TabContentAttached += TabGroup_TabContentAttached;
 }
Пример #3
0
 public ToolWindowUI(MainWindowControl mainWindowControl, AppToolWindowLocation location, double length, StackedContent <IStackedContentChild> stackedContent, bool insertLast, IToolWindowGroupManager mgr)
 {
     this.mainWindowControl      = mainWindowControl;
     this.Location               = location;
     this.Length                 = length;
     this.StackedContent         = stackedContent;
     this.InsertLast             = insertLast;
     this.ToolWindowGroupManager = mgr;
     ToolWindowGroupManager.TabGroupCollectionChanged += ToolWindowGroupManager_TabGroupCollectionChanged;
 }
Пример #4
0
 public ToolWindowGroupContext(IMainToolWindowManager mainToolWindowManager, IToolWindowGroup toolWindowGroup)
 {
     this.MainToolWindowManager  = mainToolWindowManager;
     this.ToolWindowGroupManager = toolWindowGroup.ToolWindowGroupManager;
     this.ToolWindowGroup        = toolWindowGroup;
 }
Пример #5
0
 public ToolWindowUI(MainWindowControl mainWindowControl, AppToolWindowLocation location, double length, StackedContent<IStackedContentChild> stackedContent, bool insertLast, IToolWindowGroupManager mgr)
 {
     this.mainWindowControl = mainWindowControl;
     this.Location = location;
     this.Length = length;
     this.StackedContent = stackedContent;
     this.InsertLast = insertLast;
     this.ToolWindowGroupManager = mgr;
     ToolWindowGroupManager.TabGroupCollectionChanged += ToolWindowGroupManager_TabGroupCollectionChanged;
 }