tkinter条目验证无效

时间:2014-09-19 15:03:45

标签: python tkinter

我一直致力于让Entry框验证在过去几个小时内有效,我尝试使用' self'像布莱恩一样here。 即:

self.root = tk.tk()

这给我留下了一个只允许整数的输入框(我想只允许整数)

但是添加了类并放置了主循环和' calc = Tk()' (或self.root = tk.Tk())阻止我的其他小部件被使用。

所以我提供的是我目前的尝试,它将这个错误抛给我:

  

TypeError:OnValidate()缺少1个必需的位置参数:' W' W'   Tkinter回调中的例外

任何帮助都会受到赞赏,我已经在互联网上搜索了,但似乎这个方法的文档很少,或者我在研究方面真的很糟糕。

感谢您抽出宝贵时间阅读我的问题,我期待着任何答案。

from tkinter import *
import tkinter as tk
global choice 
choice = 0



def calculate(*event):
    if choice == 1:
        add1 = ccalc1.get()
        add2 = ccalc2.get()
        answ = add1 + add2         
        answer = Label(calc, text = answ)
        answer.grid(row=1, column=0)
    elif choice == 2:
        sub1 = ccalc1.get()
        sub2 = ccalc2.get()
        answ = sub1 - sub2         
        answer = Label(calc, text = answ)
        answer.grid(row=1, column=0)
    elif choice == 3:
        mul1 = ccalc1.get()
        mul2 = ccalc2.get()
        answ = mul1 * mul2         
        answer = Label(calc, text = answ)   
        answer.grid(row=1, column=0)
    elif choice == 4:
        div1 = ccalc1.get()
        div2 = ccalc2.get()
        answ = div1 / div2         
        answer = Label(calc, text = answ)
        answer.grid(row=1, column=0)
def choice1():
    global choice
    choice = 1  
    welcome.config(text="Addition")
def choice2():
    global choice
    choice = 2   
    welcome.config(text="Subtraction")
def choice3():
    global choice
    choice = 3   
    welcome.config(text="Multiplication")
def choice4():
    global choice
    choice = 4   
    welcome.config(text="Division")
tkinter     
def OnValidate(self, d, i, P, s, S, v, V, W):
        return S.isdigit()




calc = Tk()
calc.title("Calculator")
calc.geometry("200x140")





ccalc1 = IntVar()
ccalc2 = IntVar()



if choice == 0:
    welcome = Label(calc, text="Select a choice")
val = (calc.register(OnValidate),
      '%d', '%i', '%P', '%s', '%S', '%v', '%V', '%W')  
calcbox1 = Entry(calc,textvariable=ccalc1, validate="key", 
                              validatecommand=val)
calcbox2 = Entry(calc,textvariable=ccalc2, validate="key", 
                              validatecommand=val)
submit = Button(calc, text="CALCULATE", command = calculate)

welcome.grid(row=0,column=0)
calcbox1.grid(row=2, column=0)
calcbox2.grid(row=3, column=0)
submit.grid(row=4, column=0)
calc.bind('<Return>', calculate)



menu=Menu(calc)

filemenu = Menu(menu,tearoff=0)
filemenu.add_command(label="Add", command = choice1)
filemenu.add_command(label="Subtract", command = choice2)
filemenu.add_command(label="Multiply", command = choice3)
filemenu.add_command(label="Divide", command = choice4)

menu.add_cascade(label="Operations",menu=filemenu)

help = Menu(menu,tearoff=0)
help.add_command(label="About")

menu.add_cascade(label="Help",menu=help)


calc.config(menu=menu)
calc.app = Frame(calc)
calc.app.grid()
calc.mainloop()  

1 个答案:

答案 0 :(得分:4)

三个问题:

  1. 第49行有一个NameError,就在choice4函数之后。

        welcome.config(text="Division")
    tkinter      #what's this for?
    def OnValidate(self, d, i, P, s, S, v, V, W):
    

    只需从该行中删除tkinter

  2. OnValidate不应该有self参数,因为它不属于某个类。

    def OnValidate(d, i, P, s, S, v, V, W):
    
  3. 条目不能同时包含textvariablevalidatecommand。如果您需要验证命令,则必须不使用文本变量。您现在使用calc1.get()的任何地方,都必须使用int(calcbox1.get())替换。