关于 datagridview tooltiptext 停留时间的问题
在事件void dataGridView1_CellToolTipTextNeeded
{
。。。。。
}里做的。
但是控制不了显示的时间。过一会就会消失
我想让鼠标离开之前一直显示
------解决方案--------------------
用ToolTip :
Visual Basic  复制代码  
' This example assumes that the Form_Load event handling method
' is connected to the Load event of the form.
Private Sub Form1_Load(sender As Object, e As System.EventArgs) Handles MyBase.Load
  ' Create the ToolTip and associate with the Form container.
  Dim toolTip1 As New ToolTip()   
  ' Set up the delays for the ToolTip.
  toolTip1.AutoPopDelay = 5000
  toolTip1.InitialDelay = 1000
  toolTip1.ReshowDelay = 500
  ' Force the ToolTip text to be displayed whether or not the form is active.
  toolTip1.ShowAlways = True   
  ' Set up the ToolTip text for the Button and Checkbox.
  toolTip1.SetToolTip(Me.button1, "My button1")
  toolTip1.SetToolTip(Me.checkBox1, "My checkBox1")
End Sub  
C#  复制代码  
// This example assumes that the Form_Load event handling method
// is connected to the Load event of the form.
private void Form1_Load(object sender, System.EventArgs e)
{
  // Create the ToolTip and associate with the Form container.
  ToolTip toolTip1 = new ToolTip();
  // Set up the delays for the ToolTip.
  toolTip1.AutoPopDelay = 5000;
  toolTip1.InitialDelay = 1000;
  toolTip1.ReshowDelay = 500;
  // Force the ToolTip text to be displayed whether or not the form is active.
  toolTip1.ShowAlways = true;    
  // Set up the ToolTip text for the Button and Checkbox.
  toolTip1.SetToolTip(this.button1, "My button1");
  toolTip1.SetToolTip(this.checkBox1, "My checkBox1");
}