我在Python 3和Tkinter中创建了一个使用单选按钮的程序。现在,我怎样才能确定某些单选按钮已被检查?
答案 0 :(得分:1)
您想在单选按钮上使用select方法,如下所示:
import tkinter as tk
root = tk.Tk()
root.title("Radio Button Example")
button = tk.Radiobutton(root) # Make a radio button
button.pack() # Pack it to the screen
button.select() #This is the bit that makes it checked
root.mainloop()
有关tk中RadioButtons的更多信息,请查看教程点上的此页面: