2 writes to infoTip
System.Workflow.ComponentModel (2)
AuthoringOM\Design\DesignerWidgets.cs (2)
2159
this.
infoTip
= new NativeToolTip(this.parentControl.Handle);
2186
this.
infoTip
= null;
15 references to infoTip
System.Workflow.ComponentModel (15)
AuthoringOM\Design\DesignerWidgets.cs (15)
2160
this.
infoTip
.SetDelay(NativeMethods.TTDT_INITIAL, 1000);
2161
this.
infoTip
.SetDelay(NativeMethods.TTDT_RESHOW, 1000);
2162
this.
infoTip
.SetDelay(NativeMethods.TTDT_AUTOPOP, 1000000);
2168
this.
infoTip
.SetMaxTipWidth(width);
2183
if (this.
infoTip
!= null)
2185
((IDisposable)this.
infoTip
).Dispose();
2204
this.
infoTip
.Pop();
2205
this.
infoTip
.Activate(false);
2210
this.
infoTip
.Activate(true);
2217
if (NativeMethods.IsWindowVisible(this.
infoTip
.Handle))
2218
this.
infoTip
.Pop();
2221
this.
infoTip
.UpdateTitle(this.infoTipTitle);
2224
this.
infoTip
.UpdateToolTipText(this.infoTipText);
2237
this.
infoTip
.Activate(false);
2270
this.
infoTip
.UpdateToolTipRectangle(this.parentControl.ClientRectangle);