spinner control : Spinner : WxPython PYTHON TUTORIALS


PYTHON TUTORIALS » WxPython » Spinner »

 

spinner control


spinner control
import wx

class SpinnerFrame(wx.Frame):
    def __init__(self):
        wx.Frame.__init__(self, None, -1'Spinner Example', size=(100100))
        panel = wx.Panel(self, -1)
        sc = wx.SpinCtrl(panel, -1""(3020)(80, -1))
        sc.SetRange(1,100)
        sc.SetValue(5)

app = wx.PySimpleApp()
SpinnerFrame().Show()
app.MainLoop()



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo WxPython
» Spinner