我意识到ttk.Spinbox
似乎总是突出显示通过向上或向下按钮选择的新值。有没有办法避免这个功能?可以selectbackground=<background color>, selectforeground=<foreground color>
在 Style 中设置,但这只是隐藏了问题。
- 操作系统:Windows 10 家庭版
- 总热量/总热量:8.6
- 蟒蛇:3.7.3
可重现的例子:
from tkinter import Tk
from tkinter.ttk import Spinbox, Style
root = Tk()
spinbox = Spinbox(root, from_=0, to=10)
spinbox.pack(expand=True)
### How to hide it
style = Style(root)
style.configure('TSpinbox',
selectbackground=style.configure('TSpinbox', 'background'), #set selectforeground to foreground
selectforeground=style.configure('TSpinbox', 'foreground')) #set selectbackground to background
###
root.mainloop()