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