我想在 Python 的 tkinter 中制作三个比例滑块,我可以在其中移动前两个滑块,第三个滑块移动自身作为前两个滑块值的总和
我尝试使用以下代码,尝试将前两个的值设置为第三个。
from tkinter import *
master = Tk()
#First Scale
w1=Scale(master, from_=0, to=100,orient=HORIZONTAL)
w1.pack()
#Second Scale
w2=Scale(master, from_=0, to=200,orient=HORIZONTAL)
w2.pack()
#Third Scale where sum has to be shown
w3=Scale(master, from_=0, to=300,orient=HORIZONTAL)
w3.set(w1.get()+w2.get())
w3.pack()
mainloop()
期望是移动前两个滑块,第三个滑块将自身移动到前两个滑块值之和的值。
料青山看我应如是
相关分类