To add tool tips to an UltraGrid we're doing the following on individual columns...
column1.Header.ToolTipText = "my tool tip!";column2.Header.ToolTipText = "my other tool tip!";
I understand we can't natively set the tooltip duration on an UltraGrid, so how is this done?
We actually require the tool tips to display until the mouse is moved. Is this possible? If not, I see the UltraToolTipManager has an AutoPopupDelay member that can be used so we tried that, however the constructor's param is an IContainer and an UltraGrid is not an IContainer.
Can please provide instructions or a sample of how to make tool tip text for a UltraGrid column display indefinitely or as an alternative set the duration?
Thank you for your help.
Hello Patrick,
Please check the following forum post where a similar issue is discussed:
https://es.infragistics.com/community/forums/f/ultimate-ui-for-windows-forms/93964/set-infinite-tooltip-on-ultragrid-cell
It explains how the default tooltips could be removed by using creation filter and how tooltips could be added using the UltraToolTipManager control in combination with the MouseEnter and MouseLeave events of the grid.
The original forum post shows how the tooltips could be set for the cells only, so I have modified the sample and I am attaching it below.
Please test the sample on your side and let me know if you have any questions or concerns.
Regards, Ivan Kitanov
ToolTipsGrid.zip