是否可以在Tkinter中更改菜单项的选定字体颜色?我以为这是selectcolor,但我无法做到这一点。帮助将不胜感激。
当我将光标悬停在其上方时,我希望“保存”文本保持黑色。我现在仅使用effbot.org的示例代码:
from tkinter import *
root = Tk()
def hello():
print("hello!")
menubar = Menu(root)
# create a pulldown menu, and add it to the menu bar
filemenu = Menu(menubar, tearoff=0)
filemenu.add_command(label="Open", command=hello)
filemenu.add_command(label="Save", command=hello)
filemenu.add_separator()
filemenu.add_command(label="Exit", command=root.quit)
menubar.add_cascade(label="File", menu=filemenu)
# create more pulldown menus
editmenu = Menu(menubar, tearoff=0)
editmenu.add_command(label="Cut", command=hello)
editmenu.add_command(label="Copy", command=hello)
editmenu.add_command(label="Paste", command=hello)
menubar.add_cascade(label="Edit", menu=editmenu)
helpmenu = Menu(menubar, tearoff=0)
helpmenu.add_command(label="About", command=hello)
menubar.add_cascade(label="Help", menu=helpmenu)
# display the menu
root.config(menu=menubar)
root.mainloop()
答案 0 :(得分:0)
有activebackground
和activeforeground
个选项,可用于更改悬停时的背景和前景色。
替换此
filemenu.add_command(label="Save", command=hello)
与此
filemenu.add_command(label="Save", command=hello, activeforeground = 'black')
希望这能按预期进行:)