标签:gui comm tle 设置 win ble 编程 command incr
import tkinter
win = tkinter.Tk()
win.title("sunck")
win.geometry("400x400+200+20")
‘‘‘
数值范围控件
‘‘‘
def updata():
print(v.get())
#绑定个变量
v = tkinter.StringVar()
#increment 步长 默认为1
#values 最好不要与from_=0, to=100, increment=2同时使用 values=(0,2,4,6,8)
#command 只要值改变就会执行对应的方法
sp = tkinter.Spinbox(win, from_=0, to=100, increment=1, textvariable=v, command=updata)
sp.pack()
#赋值
v.set(20)
#取值
print(v.get())
#设置值
win.mainloop()
Python GUI编程(Tkinter)Spinbox控件
标签:gui comm tle 设置 win ble 编程 command incr
原文地址:https://www.cnblogs.com/pygo/p/12917566.html