1

Python 3 と Tkinter で、ラジオ ボタンを使用するプログラムを作成しました。さて、ラジオボタンのいくつかがすでにチェックされているようにするにはどうすればよいでしょうか?

4

1 に答える 1

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 の詳細については、チュートリアル ポイントに関するこのページを参照してください。

http://www.tutorialspoint.com/python/tk_radiobutton.htm

于 2013-05-27T13:18:38.503 に答える