|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
# 产生一个除法计算器
from tkinter import *
import math
root = Tk()
root.geometry( '600x200+100+100' )
v1 = StringVar()
v2 = StringVar()
v3 = StringVar()
v1.set( 0 )
v2.set( 0 )
v3.set( 0 )
def Test(num):
if num.isdigit():
return True
else:
return False
Test=root.register(Test)
def f1():
Frame( root, text='莫为难小弟了' )
def f2():
pass
e1 = Entry( root, textvariable=v1, validate='focusout',\
validatecommand=(Test,'% P'),invalidcommand=f1 ) # 为什么我的validatecommand 在输入不是数字的情况下没有触发
e2 = Entry( root, textvariable=v2, validate='focusout', validatecommand=(Test,'% P'), invalidcommand=f1 )
e3 = Entry( root, textvariable=v3 )
e1.grid( row=0, column=0, padx=10, pady=10)
e2.grid( row=0, column=2 )
e3.grid( row=0, column=4)
e3['state'] = 'readonly'
Label( root, text='/' ).grid( row=0, column=1 )
Label( root, text='=' ).grid( row=0, column=3 )
Label( root, text='请输入要进行计算的数值' ).grid( row=1, sticky='n' )
Button( root, text='确认计算' ,command=f2 ).grid( row=2, column=0, padx=10, pady=10, sticky='w' )
Button( root, text='取消' , command=root.quit ).grid( row=2, column=0, padx=10, pady=10, sticky='e')
mainloop()
本帖最后由 小伤口 于 2020-12-30 10:18 编辑 # 产生一个除法计算器
from tkinter import *
import math
root = Tk()
root.geometry( '600x200+100+100' )
v1 = StringVar()
v2 = StringVar()
v3 = StringVar()
v1.set( 0 )
v2.set( 0 )
v3.set( 0 )
def Test(num):
if num.isdigit():
return True
else:
return False
Test=root.register(Test)
def f1():
Frame( root, text='莫为难小弟了' )
def f2():
pass
e1 = Entry( root, textvariable=v1, validate='key',\
validatecommand=(Test,'%P') ) # 为什么我的validatecommand 在输入不是数字的情况下没有触发
e2 = Entry( root, textvariable=v2, validate='key', validatecommand=(Test,'%P') )
e3 = Entry( root, textvariable=v3 )
e1.grid( row=0, column=0, padx=10, pady=10)
e2.grid( row=0, column=2 )
e3.grid( row=0, column=4)
e3['state'] = 'readonly'
Label( root, text='/' ).grid( row=0, column=1 )
Label( root, text='=' ).grid( row=0, column=3 )
Label( root, text='请输入要进行计算的数值' ).grid( row=1, sticky='n' )
Button( root, text='确认计算' ,command=f2 ).grid( row=2, column=0, padx=10, pady=10, sticky='w' )
Button( root, text='取消' , command=root.quit ).grid( row=2, column=0, padx=10, pady=10, sticky='e')
mainloop()
我帮你改好了(以上代码仅供参考)
1 %P就是%P中间不能留空格
2 这是键盘事件要用key
3 invalidcommand=f1中的Frame还没有安排位置不然会报错,所以我把invalidcommand删了
|
|