gpt4 book ai didi

python - 如何控制 Tkinter 中下拉菜单的位置?

转载 作者:行者123 更新时间:2023-11-30 22:54:33 25 4
gpt4 key购买 nike

我正在尝试更改 Tkinter 中下拉菜单的呈现方式。我在TutorialsPoint 上找到了这段代码:

    from Tkinter import *


def donothing():
filewin = Toplevel(root)
button = Button(filewin, text="Do nothing button")
button.pack()


root = Tk()
menubar = Menu(root)
filemenu = Menu(menubar, tearoff=0)
filemenu.add_command(label="New", command=donothing)
filemenu.add_command(label="Open", command=donothing)
filemenu.add_command(label="Save", command=donothing)
filemenu.add_command(label="Save as...", command=donothing)
filemenu.add_command(label="Close", command=donothing)

filemenu.add_separator()

filemenu.add_command(label="Exit", command=root.quit)
menubar.add_cascade(label="File", menu=filemenu)
editmenu = Menu(menubar, tearoff=0)
editmenu.add_command(label="Undo", command=donothing)
editmenu.add_separator()

editmenu.add_command(label="Cut", command=donothing)
editmenu.add_command(label="Copy", command=donothing)
editmenu.add_command(label="Paste", command=donothing)
editmenu.add_command(label="Delete", command=donothing)
editmenu.add_command(label="Select All", command=donothing)

menubar.add_cascade(label="Edit", menu=editmenu)
helpmenu = Menu(menubar, tearoff=0)
helpmenu.add_command(label="Help Index", command=donothing)
helpmenu.add_command(label="About...", command=donothing)
menubar.add_cascade(label="Help", menu=helpmenu)

root.config(menu=menubar)
root.mainloop()

根据该网站,呈现的菜单应如下所示:Dropdown Menu Image Web

但是,当我在计算机上运行该程序时,我看到的是:Dropdown Menu Image Local

有什么方法可以让我强制执行网络版本中显示的行为,其中每个下拉菜单从菜单按钮的左角延伸到右侧,而不是从菜单按钮的右角延伸到左侧?

最佳答案

我猜这与您计算机上的设置有关,而不是 tkinter/Python。

它就像我的电脑上的TutorialsPoint 一样工作得很好! enter image description here

但要记住一些事情...(也许这适用?)根据带有下拉菜单的窗口的位置,下拉菜单的方向会发生变化(这是我的窗口靠近显示器边缘的位置)

enter image description here

如果我有双显示器,我也会测试一下。希望这有帮助。

关于python - 如何控制 Tkinter 中下拉菜单的位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37736612/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com