views:

129

answers:

2

Hello,

I want to change the wxpython menubar colours.

How can I do it?

Thanks in advance :)

A: 

don't think it's doable -- it defaults to the platform's native look

Steven Sproat
+2  A: 

There are two ways

  1. Hard way , write your own custom menu bar from PyControl, position it at top of window, and create popup windows for submenus.

  2. Easier way: you can use win32api to change system menu colors for your app. Here is an example showing that http://code.activestate.com/recipes/440507-changing-the-background-color-of-the-menu-bar-in-a/

Anurag Uniyal