2 from wxPython
.wx
import *
6 #----------------------------------------------------------------------
8 class TestPanel(wxPanel
):
9 def __init__(self
, parent
, log
):
10 wxPanel
.__init
__(self
, parent
, -1)
14 wxStaticText(self
, -1, "This is a wxSlider.", wxPoint(45, 15))
16 slider
= wxSlider(self
, 100, 25, 1, 100, wxPoint(30, 60),
18 wxSL_HORIZONTAL | wxSL_AUTOTICKS | wxSL_LABELS
)
19 slider
.SetTickFreq(5, 1)
23 #----------------------------------------------------------------------
25 def runTest(frame
, nb
, log
):
26 win
= TestPanel(nb
, log
)
29 #----------------------------------------------------------------------