]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/ColorPanel.py
2 # Note: this module is not a demo per se, but is used by many of
3 # the demo modules for various purposes.
8 #---------------------------------------------------------------------------
11 class ColoredPanel(wx
.Window
):
12 def __init__(self
, parent
, color
):
13 wx
.Window
.__init
__(self
, parent
, -1, style
= wx
.SIMPLE_BORDER
)
14 self
.SetBackgroundColour(color
)
16 #---------------------------------------------------------------------------