我想写与WX Python的GUI应用程序,我需要控制定时器事件的时间间隔。 这里是我当前的代码:
self.timer = wx.Timer(self)
self.Bind(wx.EVT_TIMER, self.on_timer, self.timer)
self.timer.Start(750) # start timer after a delay
这是一个正确的框架,但我无法控制的期间或多久EVT_TIMER发生。 我一直在试图找出使用WX TimerEvent类,但没有任何的运气。 我觉得这应该是我所需要的,但它不工作:
self.timer = wx.Timer(self)
self.timerEvent = wx.TimerEvent(self.timer.GetId(),10)
self.Bind(wx.EVT_TIMER, self.on_timer, self.timer)
谢谢!