1

有什么方法可以更改 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()

在此处输入图像描述

4

1 回答 1

0

您可以使用一些选项更改悬停时的背景activebackgroundactiveforeground前景色。

替换这个

filemenu.add_command(label="Save", command=hello)

有了这个

filemenu.add_command(label="Save", command=hello, activeforeground = 'black')

希望这能按预期工作:)

于 2020-04-22T19:10:15.107 回答