3 writes to toolContainer
System.Workflow.ComponentModel (3)
AuthoringOM\Design\WorkflowView.cs (3)
309this.toolContainer = null; 642this.toolContainer = new TabControl(DockStyle.Right, AnchorAlignment.Far); 669this.toolContainer = null;
18 references to toolContainer
System.Workflow.ComponentModel (18)
AuthoringOM\Design\WorkflowView.cs (18)
304if (this.toolContainer != null) 306Controls.Remove(this.toolContainer); 307this.toolContainer.TabStrip.Tabs.Clear(); 308this.toolContainer.Dispose(); 628return (this.toolContainer != null); 643Controls.Add(this.toolContainer); 644EnsureScrollBars(this.hScrollBar, this.toolContainer.ScrollBar as VScrollBar); 651this.toolContainer.TabStrip.Tabs.Add(new ItemInfo(i + 1, tabImage, buttonCaption)); 654this.toolContainer.TabStrip.TabChange += new SelectionChangeEventHandler<TabSelectionChangeEventArgs>(OnTabChange); 664this.toolContainer.TabStrip.TabChange -= new SelectionChangeEventHandler<TabSelectionChangeEventArgs>(OnTabChange); 665this.toolContainer.TabStrip.Tabs.Clear(); 667Controls.Remove(this.toolContainer); 668this.toolContainer.Dispose(); 1278if (this.toolContainer != null) 1280this.toolContainer.Location = new Point(Width - this.toolContainer.Width, 0); 1281this.toolContainer.Height = Height - ((hScrollBar.Visible) ? hScrollBar.Height : 0); 1451if (e.Control != VScrollBar && e.Control != HScrollBar && e.Control != this.toolContainer)