]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/wxPIA_book/Chapter-07/spinner.py
3 class SpinnerFrame(wx
.Frame
):
5 wx
.Frame
.__init
__(self
, None, -1, 'Spinner Example',
7 panel
= wx
.Panel(self
, -1)
8 sc
= wx
.SpinCtrl(panel
, -1, "", (30, 20), (80, -1))
12 if __name__
== '__main__':
13 app
= wx
.PySimpleApp()