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