wx.mod menu Coloring

BlitzMax Forums/Brucey's Modules/wx.mod menu Coloring

MOBii(Posted 2014) [#1]
MenuBar.SetTextColour(New wxColour.Create(255, 0, 255))
MenuBar.SetBackgroundColour(New wxColour.Create(255, 213, 180))

...
SetMenuBar(MenuBar)
Is it possible to set my own Menu Color's?

In bbDoc:
Note that setting the background colour does not cause an immediate refresh, so you may wish to call
wxWindow::ClearBackground or wxWindow::Refresh after calling this function.

Using this function will disable attempts to use themes for this window, if the system supports them.
Use with care since usually the themes represent the appearance chosen by the user to be used for all
applications on the system.
Nothing happen when I call: ClearBackground or Refresh


Henri(Posted 2014) [#2]
As far as I know menubar/menu colouring isn't easily possible, as usually colours are defined by the user or theme. You can change indivitual menuitems though.

-Henri


Brucey(Posted 2014) [#3]
I'm not sure, but it may also require the use of manifest file configuration?