Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当检查按钮被选中时,我怎样才能做到这一点,然后所有滑块都使用 python 3 和 tkinter 像一个一样移动?谢谢你的帮助!:)
首先,您需要保存对每个滑块的引用,这些滑块是 Scale 小部件的实例。接下来,您需要将一个命令与 checkbutton 相关联(使用command属性),无论何时选中或取消选中 checkbutton,都会调用该命令。在该命令中,您可以调用set每个滑块的方法。
command
set