有没有一种方法只允许用户一次检查一组checkButton小部件中的一个checkButton小部件?我可以想象有一些蛮力的解决方案,但是我正在寻找优雅的东西。

最佳答案

您可以将所有复选按钮绑定到具有不同onvalue的单个变量。

import tkinter

root = tk.Tk()            #Creating the root window
var = tk.IntVar()         #Creating a variable which will track the selected checkbutton
cb = []                   #Empty list which is going to hold all the checkbutton
for i in range(5):
    cb.append(tk.Checkbutton(root, onvalue = i, variable = var))
                          #Creating and adding checkbutton to list
    cb[i].pack()          #packing the checkbutton

root.mainloop()           #running the main loop


我已出于演示目的循环创建了它们。即使按顺序创建它们,也可以使用具有不同onvalue的相同变量名。

10-06 06:29