는 Tkinter에서이 manual처럼 [실현 : 실제로 here.]ttk.Widget.state() TclError : 잘못된 상태 이름 난 (주회 돌이의 beggining에) 상태 ttk.button 변화를 시도
import tkinter
from tkinter import ttk
root = tkinter.Tk()
style = ttk.Style()
style.map("C.TButton",
foreground=[('pressed', 'red'), ('active', 'blue')],
background=[('pressed', '!disabled', 'black'), ('active', 'white')]
)
colored_btn = ttk.Button(text="Test", style="C.TButton")
colored_btn.pack()
colored_btn.state('pressed')
root.mainloop()
결과
in state return self.tk.splitlist(str(self.tk.call(self._w, "state", statespec))) _tkinter.TclError: Invalid state name p
질문의 링크가 작동하지 않습니다. –
새로 고침했습니다. – Mesco