How do I draw my own submenu arrow in owner draw menus (and prevent windows from painting its arrow on top of mine)

StackOverflow https://stackoverflow.com/questions/2716402

Question

Windows seems to draw the submenu arrow after I have done my painting in WM_DRAWITEM, how can I stop windows from drawing the arrow?

Was it helpful?

Solution

See Owner Drawing the Submenu Arrow on CodeGuru.

In a nutshell, the OS always draws the arrow after you are done drawing the menu item, but you can use ExcludeClipRect() to exclude the menu item's rectangle from the HDC's drawable area after you are done drawing inside of it, so that the OS can't draw over top of your drawing.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top