Using the Tooltip manager I have written a custom tooltip component for all our wingrid. There all the grids we have columns (Guid Type and others) where the column width is very small. When I mouse over a cell, the tooltip component triggers perfectly. But the Grid's tooltip is also trigger.
Eg: If I mouse over a cell where I have hidden a guid value and placed an image as a background, a tooltip pops up, expanding from the cell and displays the whole value of the cell. I want to capture this event and stop it.
This is actually becoming a bigger problem when we are bringing in text data types and it displays the tooltip through the component and grids tooltip with the data in the cell together.
If you set all of the various TipStyle* properties to Hide and the grid is still showing a ToolTip, I'm not really sure what could be causing the issue. If you could post a small project here, I could take a look at it to see what the problem is.
-Matt
Matt,
That really did not help. I have attached an example image where when I mouse over the cell where the text is hidden, it is showing the text and my custom tooltip. It is the text I want to hide.
this.ultraGrid1.DisplayLayout.Override.TipStyleCell = TipStyle.Hide;
Can you please provide me with some example code. I am unalbe to find reference to these objects in the grid.
I don't think that there is a specific event for cancelling the ToolTips. You can, however, set the TipStyleCell, TipStyleHeader, TipStyleRowConnector, and TipStyleScroll properties on the Override object to Hide if you don't want them to show.