]> git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/wxSpinCtrl.py
fixed bug with deletion of several last items in wxListCtrl, added tests for it in...
[wxWidgets.git] / wxPython / demo / wxSpinCtrl.py
1
2 from wxPython.wx import *
3
4 import string
5
6 #----------------------------------------------------------------------
7
8 class TestPanel(wxPanel):
9 def __init__(self, parent, log):
10 wxPanel.__init__(self, parent, -1)
11 self.log = log
12 self.count = 0
13
14 wxStaticText(self, -1, "This example uses the wxSpinCtrl control.",
15 wxPoint(45, 15))
16
17 sc = wxSpinCtrl(self, -1, "", wxPoint(30, 50), wxSize(80, -1))
18 sc.SetRange(1,100)
19 sc.SetValue(5)
20
21
22 #----------------------------------------------------------------------
23
24 def runTest(frame, nb, log):
25 win = TestPanel(nb, log)
26 return win
27
28 #----------------------------------------------------------------------
29
30
31
32
33
34
35
36 overview = """\
37 """