2 writes to toolTip
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGridViewToolTip.cs (2)
53this.toolTip = new ToolTip(); 94this.toolTip = null;
14 references to toolTip
System.Windows.Forms (14)
winforms\Managed\System\WinForms\DataGridViewToolTip.cs (14)
39return this.toolTip; 51if (activate && this.toolTip == null) 54this.toolTip.ShowAlways = true; 55this.toolTip.InitialDelay = 0; 56this.toolTip.UseFading = false; 57this.toolTip.UseAnimation = false; 58this.toolTip.AutoPopDelay = 0; 69this.toolTip.Active = true; 70this.toolTip.Show(this.dataGridView.ToolTipPrivate, this.dataGridView); 72else if (this.toolTip != null) 74this.toolTip.Hide(this.dataGridView); 75this.toolTip.Active = false; 91if (this.toolTip != null) 93this.toolTip.Dispose();