]>
git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/demo/ColorPanel.py
2 #----------------------------------------------------------------------------
4 # Purpose: Testing lots of stuff, controls, window types, etc.
6 # Author: Robin Dunn & Gary Dumer
10 # Copyright: (c) 1998 by Total Control Software
11 # Licence: wxWindows license
12 #----------------------------------------------------------------------------
14 from wxPython
.wx
import *
16 #---------------------------------------------------------------------------
19 class ColoredPanel(wxWindow
):
20 def __init__(self
, parent
, color
):
21 wxWindow
.__init
__(self
, parent
, -1,
22 wxDefaultPosition
, wxDefaultSize
, wxRAISED_BORDER
)
23 self
.SetBackgroundColour(color
)
25 #---------------------------------------------------------------------------