I am currently writing a program that makes use of the WinAPI ToolBar to display a menu at the top of the Window. Using the DarkMode_Explorer style
SetWindowTheme(Script, L"DarkMode_Explorer", nullptr);
I am making the ToolBar's background turn grey for dark mode. However, the ToolBar button text still remains black. How can I change the color of this to red, or green, or white?
As you can see, it is all black. I want the text to be a different color (red, green, white, purple, should all be possibilities). I cannot find a way to do this at all, read the docs, nothing.
CDRF_NEWFONT
. – zett42