dfef5d5165
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12127 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
13 lines
381 B
Python
13 lines
381 B
Python
|
|
from wxPython.wx import *
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
class ColoredPanel(wxWindow):
|
|
def __init__(self, parent, color):
|
|
wxWindow.__init__(self, parent, -1, style = wxSIMPLE_BORDER) #wxRAISED_BORDER)
|
|
self.SetBackgroundColour(color)
|
|
|
|
#---------------------------------------------------------------------------
|