Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对不起,我真的不知道如何命名这个。
我需要为我的 Tkinter 应用程序创建一个栏,以便用户可以单击访问打开、保存和另存为等功能。理想情况下,这个栏应该有图标。如果有帮助,这适用于文本编辑器。
我已经环顾了很长一段时间,但我只是在下拉菜单上找到信息,而不是我正在尝试创建的那种。
如果可能的话,这需要运行多平台,但至少在 Mac 上。
谢谢。
这通常对我有用:
menu.add_command(label="Description", image=iconPhotoImage, compound="left") menu.iconPhotoImage = iconPhotoImage
其中 iconPhotoImage 是一个 PhotoImage。根据我的经验,图像可能会被压扁,直到它们被鼠标悬停。