我想學習如何通過下面這個documentition創建自定義TTK風格:http://infohost.nmt.edu/tcc/help/pubs/tkinter/web/ttk-style-layer.html頂呱呱:自定義樣式不工作
下面是代碼:
self.style = ttk.Style()
self.style.configure("ciao.TLabel", bg="red")
poplabel = ttk.Label(self.root, text="ciao", style="ciao.TLabel")
poplabel.place(x=0, y=530)
的問題是,標籤樣式仍然是默認的樣式,而不是「ciao.TLabel」。
你在使用什麼操作系統? [This](http://stackoverflow.com/questions/6723850)可能有助於回答你的問題。 –