0

使用我目前拥有的代码,当程序启动时,我可以从 3 个选项中进行选择,并将该选项打印到控制台。我也可以在文本条目中输入文本,通过按下按钮将其添加到选项菜单列表中。

通过添加新选项,它会破坏 optionMenu,并且我不再能够从 optionMenu 中获取所选选项。

我尝试查看 tkinter 文档(我能找到的很少),但没有找到与我的问题相关的信息。

import tkinter

category_list = ['Option A', 'Option B','Option C']

def add_To_List():
    entry = entry_Right.get()
    if entry not in category_list:
        option_Left_StringVar.set('')

        menu_left = option_Left["menu"]
        menu_left.delete(0, "end")
        category_list.append(entry)

        for choice in category_list:
            menu_left.add_command(label=choice, 
command=tkinter._setit(option_Left_StringVar, choice))

def option_Left_Function(selection):
    print(selection)

#----GUI----

root = tkinter.Tk()

frame_Left = tkinter.Frame(root)
frame_Left.grid(column=0, row=0, sticky='w')


option_Left_StringVar = tkinter.StringVar(frame_Left)
option_Left = tkinter.OptionMenu(frame_Left, option_Left_StringVar, 
*category_list, command=option_Left_Function)
option_Left.grid(column=0, row=0, sticky='w')


frame_Right = tkinter.Frame(root)
frame_Right.grid(column=1, row=0, sticky='e')

entry_Right = tkinter.Entry(frame_Right)
entry_Right.grid(column=1, row=0, sticky='w')

button_Right = tkinter.Button(frame_Right, text='Add to list', 
command=add_To_List)
button_Right.grid(column=2, row=0, sticky='w')

root.mainloop()

我能做到的最远(如您在上面的代码中看到的)是向 optionMenu 添加一个新选项,但是当我无法访问代码中的 optionMenu 选择时,这无济于事。

我真的很感谢在这个问题上的帮助,谢谢。

4

1 回答 1

1

您必须添加option_Left_Function为第三个参数

command=tkinter._setit(option_Left_StringVar, choice, option_Left_Function)

使用print(tkinter.__file__)你可以获得源代码的路径,你可以在这个文件中看到它。


顺便说一句:您不必删除旧项目。您只能添加新项目。

def add_To_List():
    entry = entry_Right.get()
    if entry not in category_list:
        option_Left_StringVar.set('')

        menu_left = option_Left["menu"]
        menu_left.add_command(label=entry, 
                  command=tkinter._setit(option_Left_StringVar, entry, option_Left_Function))

        category_list.append(entry)
于 2019-11-07T12:53:49.777 回答