-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dark menu bar is missing #1
Comments
Windows Explorer does not have dark menu, that is Ribbon UI with dark theme. |
Was going to ask you to do a dark themed UI but then I realized choosing the color was built in to the ribbon framework. Just for my curiosity, how did you learn the undocumented API? |
@tom-huntington Using IDA and x64dbg to decompile system executables. |
Unresolved: - Child windows cannot have a menu - Dark mode doesn't look good with win32 menus (might not be fixable, see ysc3839/win32-darkmode#1 )
The primary reason for doing this here instead of just assigning a menu later on with `SetMenu` is to avoid that `with_inner_size` breaks, since the menu takes up some space that is not taken into account, which means the user would have to use `set_inner_size` again after adding the menu. Notes: - Child windows cannot have a menu, so perhaps this should be represented typewise? - Dark mode doesn't look good with win32 menus, unfortunately not fixable, see ysc3839/win32-darkmode#1
The primary reason for doing this here instead of just assigning a menu later on with `SetMenu` is to avoid that `with_inner_size` breaks, since the menu takes up some space that is not taken into account, which means the user would have to use `set_inner_size` again after adding the menu. Notes: - Child windows cannot have a menu, so perhaps this should be represented typewise? - Dark mode doesn't look good with win32 menus, unfortunately not fixable, see ysc3839/win32-darkmode#1
I've downloaded master version on 19-July-2019 and everything looks good (submenus, popups, titlbar, scrollbars) all beside menu.
Windows Explorer has dark menu.
How to use the same dark menu styling as Windows Explorer has?
The text was updated successfully, but these errors were encountered: