TkinterのNotebook(タブ)でスタイルを変更したいのですが、
選択中のタブのスタイル変更方法が分かりません。
下記ソースコードの s.theme_settings()での指定方法がありましたら教えてください。
Python
1import tkinter as tk 2import tkinter.ttk as ttk 3 4def func1(e): 5 b1 = e.widget 6 if b1["bg"] == "SystemButtonFace": 7 b1["bg"] = "red" 8 else: 9 b1["bg"] = "SystemButtonFace" 10 11def func2(e): 12 b2 = e.widget 13 if b2["bg"] == "SystemButtonFace": 14 b2["bg"] = "red" 15 else: 16 b2["bg"] = "SystemButtonFace" 17 18def func3(e): 19 b3 = e.widget 20 if b3["bg"] == "SystemButtonFace": 21 b3["bg"] = "red" 22 else: 23 b3["bg"] = "SystemButtonFace" 24 25win = tk.Tk() 26win.geometry("300x300") 27 28win.rowconfigure(0, weight=1) 29win.columnconfigure(0, weight=1) 30 31s = ttk.Style() 32s.theme_settings( "clam", settings={ 33 "TNotebook": {"configure": {"tabmargins": [2, 5, 2, 0] } }, 34 "TNotebook.Tab": {"configure": {"padding": [30, 10] },}}) 35 36s.theme_use("clam") 37 38note = ttk.Notebook(win) 39note.grid(row=0, column=0, sticky="nsew") 40 41tab1 = tk.Frame(note) 42tab2 = tk.Frame(note) 43tab3 = tk.Frame(note) 44 45note.add(tab1, text="Tab1") 46note.add(tab2, text="Tab2") 47note.add(tab3, text="Tab3") 48 49b1 = tk.Button(tab1, text="b1") 50b1.grid() 51b2 = tk.Button(tab2, text="b2") 52b2.grid() 53b3 = tk.Button(tab3, text="b3") 54b3.grid() 55 56b1.bind("<ButtonRelease>", func1) 57b2.bind("<ButtonRelease>", func2) 58b3.bind("<ButtonRelease>", func3) 59 60win.mainloop()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。