Changing windows close button hover colour #250
Replies: 2 comments
-
New attempt with a few changes but still does not do what is intended
|
Beta Was this translation helpful? Give feedback.
-
That approach was never going to work anyway, because it would only change the entire title bar (the "caption") at once. You would have to disable standard painting and manually paint not only the buttons yourself, which is the purpose of DWMWA_CAPTION_BUTTON_BOUNDS, but the entire title bar. You can get an idea of how complex this actually is here: https://github.com/grassator/win32-window-custom-titlebar/blob/main/main.c But, implementing all of that in Windhawk should actually work to give you the custom hover colors you want. |
Beta Was this translation helpful? Give feedback.
-
I have been trying to change the windows close button hover colour. I have had dll issues and unexpected results such as transparent windows and crashes. I cant seem to get this idea to work any help would be appreciated my last attempt is below which currently makes windows invisible and unclickable. There have been issues with dwmapi.dll.
Beta Was this translation helpful? Give feedback.
All reactions