I want to generate a tool tip dynamically since the tooltip has to contain a grid with dynamic number of columns.
How do I do that ?
|
|
|
You can create a new Popup and simulate the tooltip as that Popup. You just have to handle this two events: MouseEnter, MouseLeave. On Mouse Enter you can have a timer to open your popup after x seconds:
and on mouse leave you cancel the timer:
when the timer elapses, you'll use dispatcher to open the popup:
The Open tooltip method will open the popup:
And you can also close it when the popup lost focus Hope this can help |
|||
|
|