我在Python 2.7上使用wxPython,我正在尝试使用https://www.youtube.com/watch?v=R5sxImX3gog的Youtube教程添加滑块。 但是,我一直收到一条错误消息,说明参数太多。错误代码如下。
Traceback (most recent call last):
File "C:\Python27\ActionFrame.py", line 15, in <module>
frame=ActionFrame(parent=None,id=-1)
File "C:\Python27\ActionFrame.py", line 10, in __init__
slider.SetTickFreq(5,1)
TypeError: Slider.SetTickFreq(): too many arguments
我正在使用的代码如下。
import wx
class ActionFrame(wx.Frame):
def __init__(self,parent,id):
locale = wx.Locale(wx.LANGUAGE_ENGLISH)
wx.Frame.__init__(self,parent,id,"Frame", size=(300,200))
panel=wx.Panel(self)
slider=wx.Slider(panel, -1, 50, 1, 100, pos=(10,10), size=(250, -1), style=wx.SL_AUTOTICKS | wx.SL_LABELS)
slider.SetTickFreq(5,1)
if __name__=='__main__':
app=wx.App()
frame=ActionFrame(parent=None,id=-1)
frame.Show()
app.MainLoop()
我做错了什么? 先感谢您。