0
votes
2answers
187 views

Transparent Tooltip Background [closed]

I have 2 regions in a window, each with their own tooltip. these tooltips are custom drawn by handling the WM_PAINT message (to prevent flicker). This is the creation of the tooltips: ...
2
votes
1answer
118 views

transparent background on tooltip control

I was able to do custom painting on the tooltip control, by disable its visual style. I am curious that if we can make the tooltip control to be "Layered" (i.e transparent). I tried to add ...
1
vote
1answer
94 views

use fixed-width font for tooltip

I want to display some mouse event information in a tooltip. It looks like: Win1 : x = 100; y = 99; dx = 655; dy = 1789; Win2 : x = 2396; y = 133; dx = 78; dy = 111; .... .... Even if I use ...
3
votes
4answers
3k views

How to get tooltip text for a given HWND?

I'm looking for a way to get the tooltip control (if any) which is associated with a given HWND. The text of the tooltip control would be sufficient, too. The closest thing I found is the TTM_GETTEXT ...