wx.Slider

O-Zone wrote:

Someone can help me how to use this widget ?
How to handle events from wx.Slider ?

You handle events from wx.Slider just like every other widget. To trap when the user scrolls the slider, use wx.EVT_SCROLL eg:

self.Bind(wx.EVT_SCROLL, self.onScroll)

···

--
Paul McNett
http://paulmcnett.com