Reputation: 274
is it possible to add a control to a tooltip? What im trying to achieve is a tooltip that shows some example data in a dataGridview inside the tooltip.
What I have done so far is the following:
I'd like to embed another dataGridview in the tooltip because some examples are in table form.
Upvotes: 1
Views: 643
Reputation: 274
My solution was to use a custom panel that shows up on the cursors position and fade out after a timer has reached end.
Upvotes: 1
Reputation: 2568
Tooltips are very limited.
The solution is to create a custom tooltip. You do a form and make it look like a tooltip and you put on it what you want.
You can make it look exactly like a tooltip an you can show it and hide it with the event handlers on your datagrid.
Upvotes: 1