how to change the background color of menu bar ?
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
how to change the background color of menu bar ? THX
-
how to change the background color of menu bar ? THX
-
how to change the background color of menu bar ? THX
Or easier, without the need to ownerdraw: MENUINFO mi; memset(&mi, 0, sizeof(mi)); mi.cbSize = sizeof(mi); mi.hbrBack = hBrush; mi.fMask = MIM_BACKGROUND; SetMenuInfo(hMenu, &mi);