python 2.5中Tkinter的问题

时间:2013-06-19 03:18:01

标签: python tkinter python-2.5

所以我正在做一个基本上在屏幕上制作缩放/滑动条的简单程序。当我运行应用程序时,比例显示并正常工作,但它不会将值打印到控制台(终端)。而是打印错误消息

import Tkinter
class App:
    def __init__(self,parent):
        self.scale = Tkinter.Scale(parent,from_ = 0, to = 100, command = self.getVal)
        self.scale.pack()
    def getVal(self):
        amount = self.scale.get()
        print str(amount)
root = Tkinter.Tk()

app = App(root)
root.mainloop()

这是错误消息:

Exception in Tkinter callback
Traceback (most recent call last):
  File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-tk/Tkinter.py", line 1403, in __call__
    return self.func(*args)
TypeError: getVal() takes exactly 1 argument (2 given)

我在Tkinter很新,所以我有点失落。

编辑:Python 2.5人。遗憾。

1 个答案:

答案 0 :(得分:2)

command回调接收新的比例值作为参数。将getVal定义更改为:

def getVal(self, newscale):
    print newscale