TkinterでGUIをボタン操作できるようにしたいのですが、どのように記述すれば良いでしょうか?
対象のコードは下記になります。Tabでボタンにフォーカスを当てた後、Enterボタンで確定できるようにしたいです。
python
1# -*- coding: utf-8 -*- 2import tkinter as tk 3class Application(tk.Frame): 4 def __init__(self,master=None): 5 super().__init__(master) 6 master.title("テキストボックス内容の取得") 7 master.geometry("350x150") 8 self.pack() 9 self.create_widgets() 10 11 #部品の作成/設定 12 def create_widgets(self): 13 self.lb=tk.Label(self) 14 self.lb["text"]="ラベル" 15 self.lb.pack(side="top") 16 self.en=tk.Entry(self) 17 self.en.pack() 18 self.en.focus_set() 19 self.bt=tk.Button(self) 20 self.bt["text"]="ボタン" 21 self.bt["command"]=self.print_txtval 22 self.bt.pack(side="bottom") 23 def print_txtval(self): 24 val_en=self.en.get() 25 print(val_en) 26 27root=tk.Tk() 28app=Application(master=root) 29app.mainloop()