问题很简单,我使用 . 在 Text 小部件中创建了许多复选框。window_create
代码如下:
import tkinter as tk
root = tk.Tk()
sb = tk.Scrollbar(orient="vertical")
text = tk.Text(root, width=40, height=20, yscrollcommand=sb.set)
sb.config(command=text.yview)
sb.pack(side="right",fill="y")
text.pack(side="top",fill="both",expand=True)
for i in range(30):
cb = tk.Checkbutton(text="checkbutton %s" % i,padx=0,pady=0,bd=0)
text.window_create("end", window=cb)
text.insert("end", "\n")
root.mainloop()
这是它的样子:
我想选择多个复选框,如果我必须单击每个复选框,这很麻烦。那么这里有没有可以使用SHIFT的方法?