Tkinter 取得与设置Scale的尺度值
设计GUI程序时可以使用set( )方法设置尺度的值,可以使用get( )方法取得尺度的值。
示例1
使用set()设置尺度初值,使用get( )获得尺度值。当单击Print按钮时可以在Python Shell窗口中列出垂直和水平的尺度值。
from tkinter import *
def printInfo():
print("Vertical scale value = %d, Horizontal scale value = %d" % (sV.get(),sH.get()))
root = Tk()
root.title("apidemos.com") # 窗口标题
sV = Scale(root,label="Vertical Scale",from_=0,to=10) # 建立垂直尺度
sV.set(5) # 设定垂直尺度初始值是5
sV.pack()
sH = Scale(root,label="Horizontal Scale",from_=0,to=10,
length=300,orient=HORIZONTAL)
sH.set(3)
sH.pack()
Button(root,text="Print the values on both Scales",command=printInfo).pack()
root.mainloop()
输出:
单击Print按钮可以得到下列结果。