python - Changing background colour of wx.MDIParentFrame -


The default color of a wx.MDIParentFrame background is a dark brown color. I would like to change that color.

Do anyone know?

I can not see a way to change the default background, are there any other methods?

Because this frame is received from Kent, you just do

 < Code> my_MIDIParentFrame.SetBackgroundColour ("black")?   

Maybe instead you can

  wx.frame.SetBackgroundColour (my_MIDI_PARENT_FRAME, "black")   

I do not know for sure ... but I think this will work ...

Comments