7 instantiations of ToolTip
System.Windows.Forms (5)
winforms\Managed\System\WinForms\ButtonBase.cs (1)
111textToolTip = new ToolTip();
winforms\Managed\System\WinForms\DataGridViewToolTip.cs (1)
53this.toolTip = new ToolTip();
winforms\Managed\System\WinForms\Label.cs (1)
191textToolTip = new ToolTip();
winforms\Managed\System\WinForms\ToolStrip.cs (1)
1855toolTip = new ToolTip();
winforms\Managed\System\WinForms\TrustManagerPromptUI.cs (1)
173this.toolTipFromUrl = new System.Windows.Forms.ToolTip(this.components);
System.Workflow.Activities (1)
Rules\Design\Dialogs\IntellisenseTextBox.Designer.cs (1)
34this.toolTip = new System.Windows.Forms.ToolTip(this.components);
System.Workflow.ComponentModel (1)
AuthoringOM\Design\DesignerWidgets.cs (1)
1708this.buttonTips = new ToolTip();
61 references to ToolTip
System.Windows.Forms (59)
winforms\Managed\System\WinForms\ButtonBase.cs (1)
56private ToolTip textToolTip;
winforms\Managed\System\WinForms\Control.cs (5)
16123void IKeyboardToolTip.OnHooked(ToolTip toolTip) { 16127void IKeyboardToolTip.OnUnhooked(ToolTip toolTip) { 16131string IKeyboardToolTip.GetCaptionForTool(ToolTip toolTip) { 16186internal virtual void OnKeyboardToolTipHook(ToolTip toolTip) { 16189internal virtual void OnKeyboardToolTipUnhook(ToolTip toolTip) {
winforms\Managed\System\WinForms\DataGridViewMethods.cs (1)
3316internal bool CancelToolTipPopup(ToolTip toolTip)
winforms\Managed\System\WinForms\DataGridViewToolTip.cs (2)
19ToolTip toolTip = null; 35public ToolTip ToolTip
winforms\Managed\System\WinForms\Label.cs (2)
82ToolTip textToolTip; 1702internal void SetToolTip(ToolTip toolTip) {
winforms\Managed\System\WinForms\ListView.cs (1)
5042internal void SetToolTip(ToolTip toolTip, string toolTipCaption) {
winforms\Managed\System\WinForms\StatusBar.cs (3)
55private ToolTip mainToolTip = null; 510internal ToolTip MainToolTip { 983internal void SetToolTip(ToolTip t) {
winforms\Managed\System\WinForms\TabControl.cs (1)
1737internal void SetToolTip(ToolTip toolTip, string controlToolTipText) {
winforms\Managed\System\WinForms\ToolBar.cs (1)
1493internal void SetToolTip(ToolTip toolTip) {
winforms\Managed\System\WinForms\ToolStrip.cs (6)
1796ToolTip internalToolTip = this.ToolTip; 1851internal ToolTip ToolTip { 1853ToolTip toolTip; 1859toolTip = (ToolTip)Properties.GetObject(ToolStrip.PropToolTip); 2103ToolTip toolTip = (ToolTip)Properties.GetObject(ToolStrip.PropToolTip);
winforms\Managed\System\WinForms\ToolStripControlHost.cs (2)
1087internal override void OnKeyboardToolTipHook(ToolTip toolTip) { 1093internal override void OnKeyboardToolTipUnhook(ToolTip toolTip) {
winforms\Managed\System\WinForms\ToolStripDropDownItem.cs (2)
720internal override void OnKeyboardToolTipHook(ToolTip toolTip) { 725internal override void OnKeyboardToolTipUnhook(ToolTip toolTip) {
winforms\Managed\System\WinForms\ToolStripItem.cs (5)
4007void IKeyboardToolTip.OnHooked(ToolTip toolTip) { 4011void IKeyboardToolTip.OnUnhooked(ToolTip toolTip) { 4015string IKeyboardToolTip.GetCaptionForTool(ToolTip toolTip) { 4033internal virtual void OnKeyboardToolTipHook(ToolTip toolTip) { 4036internal virtual void OnKeyboardToolTipUnhook(ToolTip toolTip) {
winforms\Managed\System\WinForms\ToolTip.cs (24)
99/// Initializes a new instance of the <see cref='System.Windows.Forms.ToolTip'/> class, given the container. 113/// Initializes a new instance of the <see cref='System.Windows.Forms.ToolTip'/> class in its default state. 126/// Gets or sets a value indicating whether the <see cref='System.Windows.Forms.ToolTip'/> control is currently active. 158/// the time (in milliseconds) that passes before the <see cref='System.Windows.Forms.ToolTip'/> appears. 187/// Gets or sets the initial delay for the <see cref='System.Windows.Forms.ToolTip'/> control. 210/// Gets or sets the BackColor for the <see cref='System.Windows.Forms.ToolTip'/> control. 271/// Gets or sets the ForeColor for the <see cref='System.Windows.Forms.ToolTip'/> control. 324/// Gets or sets the IsBalloon for the <see cref='System.Windows.Forms.ToolTip'/> control. 376/// the <see cref='System.Windows.Forms.ToolTip'/> 447/// Gets or sets a value indicating whether the <see cref='System.Windows.Forms.ToolTip'/> 853!(target is ToolTip)) { 1075/// Disposes of the <see cref='System.Windows.Forms.ToolTip'/> 1225/// Retrieves the <see cref='System.Windows.Forms.ToolTip'/> text associated with the specified control. 1356/// with the <see cref='System.Windows.Forms.ToolTip'/> control. 1420/// Associates <see cref='System.Windows.Forms.ToolTip'/> text with the specified control. 1615/// Associates <see cref='System.Windows.Forms.ToolTip'/> with the specified control and displays it. 1630/// Associates <see cref='System.Windows.Forms.ToolTip'/> with the specified control 1648/// Associates <see cref='System.Windows.Forms.ToolTip'/> with the specified control and displays it. 1672/// Associates <see cref='System.Windows.Forms.ToolTip'/> with the specified control and displays it. 1701/// Associates <see cref='System.Windows.Forms.ToolTip'/> with the specified control and displays it. 1723/// Associates <see cref='System.Windows.Forms.ToolTip'/> with the specified control and displays it. 1942/// Hides <see cref='System.Windows.Forms.ToolTip'/> with the specified control. 2659ToolTip control; 2661internal ToolTipNativeWindow(ToolTip control) {
winforms\Managed\System\WinForms\TreeView.cs (1)
1762internal void SetToolTip(ToolTip toolTip, string toolTipText) {
winforms\Managed\System\WinForms\TrustManagerPromptUI.cs (1)
61private System.Windows.Forms.ToolTip toolTipFromUrl;
winforms\Managed\System\WinForms\UpDownBase.cs (1)
1244internal void SetToolTip(ToolTip toolTip, string caption) {
System.Workflow.Activities (1)
Rules\Design\Dialogs\IntellisenseTextBox.Designer.cs (1)
76private System.Windows.Forms.ToolTip toolTip;
System.Workflow.ComponentModel (1)
AuthoringOM\Design\DesignerWidgets.cs (1)
1691private ToolTip buttonTips;