在 Tkinter(使用 Ttkthemes)中单击按钮后,如何删除虚线黑色边框?
我在 Windows 10,Python 3.7.9 上。
似乎没有统一的方法来删除它,我在谷歌和 SO 上进行了搜索,但没有运气。谢谢。这是一个最小的例子:
import tkinter
import tkinter.ttk
from ttkthemes import ThemedTk
tk = ThemedTk(theme="arc")
tk.configure(background="#f5f6f7")
tk.resizable(0,0)
selectFileInput = tkinter.ttk.Button(
tk,
text="Select Input File"
)
selectFileInput.place(x=20,y=60)
tk.mainloop()