示例#1
0
 public TabContentImpl(ToolWindowGroup owner, ToolWindowContent content)
 {
     elementZoomer = new TabElementZoomer();
     this.owner    = owner;
     Content       = content;
     AddEvents();
 }
示例#2
0
 public TabContentImpl(ToolWindowGroup owner, IToolWindowContent content)
 {
     this.elementScaler = new TabElementScaler();
     this.owner         = owner;
     this.Content       = content;
     AddEvents();
 }
示例#3
0
 public TabContentImpl(ToolWindowGroup owner, IToolWindowContent content)
 {
     this.owner = owner;
     this.content = content;
     AddEvents();
 }
示例#4
0
		public TabContentImpl(ToolWindowGroup owner, IToolWindowContent content) {
			this.elementScaler = new TabElementScaler();
			this.owner = owner;
			this.content = content;
			AddEvents();
		}
示例#5
0
 internal IToolWindowGroup GetToolWindowGroup(ITabGroup tabGroup) => ToolWindowGroup.GetToolWindowGroup(tabGroup);
 internal IToolWindowGroup GetToolWindowGroup(ITabGroup tabGroup)
 {
     return(ToolWindowGroup.GetToolWindowGroup(tabGroup));
 }
示例#7
0
 public TabContentImpl(ToolWindowGroup owner, IToolWindowContent content)
 {
     this.owner   = owner;
     this.content = content;
     AddEvents();
 }
示例#8
0
		public TabContentImpl(ToolWindowGroup owner, ToolWindowContent content) {
			elementZoomer = new TabElementZoomer();
			this.owner = owner;
			Content = content;
			AddEvents();
		}