任务:我想通过 call() 更改窗口框架 tk.Tk() highlightbackground 和 highlightcolor 的颜色。
原来:通过tcl改,但是不知道怎么用call……有什么指令吗?
发现如何使用:
#root.overrideredirect(1)
#root.after_idle(root.attributes, '-topmost', True)
root.call('wm', 'overrideredirect', '.', 1)
root.call('wm', 'attributes', '.', '-topmost', True)