码迷,mamicode.com
首页 > 编程语言 > 详细

Python GUI编程(Tkinter)Spinbox控件

时间:2020-05-19 16:30:48      阅读:59      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!