Change ToolTipText Display Duration

I need to show tooltips above a datagridview cell, and currently this is achieved using the tooltiptext property of the datagridview cell.

I just need to increase the default time duration, which is a hint, any quick ideas are visible, please

+4
source share
1 answer

To do this, you need to set the ShowCellToolTips property of your DataGridView to false , but rather use a standard tooltip element controlled by the CellMouseEnter DataGridView event. You can then set the AutoPopDelay property to the number of milliseconds that you want to display for the tooltip window.

More information and sample VB.Net code for using the standard ToolTip control using the DataGridView can be found here .

+3
source

All Articles