Example #1
0
 public ToolWindowGroup(IToolWindowGroupService toolWindowGroupService, ITabGroup tabGroup)
 {
     this.ToolWindowGroupService = toolWindowGroupService;
     this.TabGroup     = tabGroup;
     this.TabGroup.Tag = this;
     this.TabGroup.TabContentAttached += TabGroup_TabContentAttached;
 }
Example #2
0
 public ToolWindowUI(MainWindowControl mainWindowControl, AppToolWindowLocation location, double length, StackedContent <IStackedContentChild> stackedContent, bool insertLast, IToolWindowGroupService mgr)
 {
     this.mainWindowControl      = mainWindowControl;
     this.Location               = location;
     this.Length                 = length;
     this.StackedContent         = stackedContent;
     this.InsertLast             = insertLast;
     this.ToolWindowGroupService = mgr;
     ToolWindowGroupService.TabGroupCollectionChanged += ToolWindowGroupService_TabGroupCollectionChanged;
 }
Example #3
0
 public ToolWindowGroupContext(IDsToolWindowService toolWindowService, IToolWindowGroup toolWindowGroup)
 {
     DsToolWindowService    = toolWindowService;
     ToolWindowGroupService = toolWindowGroup.ToolWindowGroupService;
     ToolWindowGroup        = toolWindowGroup;
 }
Example #4
0
		public ToolWindowGroup(IToolWindowGroupService toolWindowGroupService, ITabGroup tabGroup) {
			ToolWindowGroupService = toolWindowGroupService;
			TabGroup = tabGroup;
			TabGroup.Tag = this;
			TabGroup.TabContentAttached += TabGroup_TabContentAttached;
		}
Example #5
0
			public ToolWindowUI(MainWindowControl mainWindowControl, AppToolWindowLocation location, double length, StackedContent<IStackedContentChild> stackedContent, bool insertLast, IToolWindowGroupService mgr) {
				this.mainWindowControl = mainWindowControl;
				Location = location;
				Length = length;
				StackedContent = stackedContent;
				InsertLast = insertLast;
				ToolWindowGroupService = mgr;
				ToolWindowGroupService.TabGroupCollectionChanged += ToolWindowGroupService_TabGroupCollectionChanged;
			}