2 writes to parentControl
System.Workflow.ComponentModel (2)
AuthoringOM\Design\DesignerWidgets.cs (2)
2157
this.
parentControl
= parentControl;
2196
this.
parentControl
= null;
10 references to parentControl
System.Workflow.ComponentModel (10)
AuthoringOM\Design\DesignerWidgets.cs (10)
2159
this.infoTip = new NativeToolTip(this.
parentControl
.Handle);
2164
using (Graphics graphics = this.
parentControl
.CreateGraphics())
2166
SizeF textSize = graphics.MeasureString(SR.GetString(SR.ToolTipString), this.
parentControl
.Font);
2171
this.inplaceTip = new NativeToolTip(this.
parentControl
.Handle);
2176
this.
parentControl
.Layout += new LayoutEventHandler(OnParentLayoutChanged);
2181
if (this.
parentControl
!= null)
2195
this.
parentControl
.Layout -= new LayoutEventHandler(OnParentLayoutChanged);
2261
Point screenCoOrd = this.
parentControl
.PointToScreen(new Point(this.inplaceTipRectangle.Left, this.inplaceTipRectangle.Top));
2270
this.infoTip.UpdateToolTipRectangle(this.
parentControl
.ClientRectangle);
2271
this.inplaceTip.UpdateToolTipRectangle(this.
parentControl
.ClientRectangle);