我正在尝试使用tkinter一个类似于easygui(http://easygui.sourceforge.net/tutorial.html#buttonbox)按钮的函数,我应该可以从控制台和gui应用程序调用它:
from tkinter import *
def mychoicebox(choicelist):
def buttonfn():
return var.get()
choicewin = Tk()
choicewin.resizable(False, False)
choicewin.title("ChoiceBox")
Label(choicewin, text="Select an item:").grid(row=0, column=0, sticky="W")
var = StringVar(choicewin)
var.set('No data') # default option
popupMenu = OptionMenu(choicewin, var, *choicelist)
popupMenu.grid(sticky=N+S+E+W, row =1, column = 0)
Button(choicewin, text='Done', command=buttonfn).grid(row=2, column=0)
choicewin.mainloop()
测试:
reply = mychoicebox(['one','two','three'])
print("reply:", reply)
它会创建一个带有标签,选择列表和按钮的窗口,但在按下“完成”按钮时它不会返回所选项目。我怎样才能做到这一点?
答案 0 :(得分:0)
它有点重新排列成课程,但这是你想要做的吗?
from tkinter import *
class Choices:
def __init__(self, parent, choicelist):
Label(choicewin, text="Select an item:").grid(row=0, column=0, sticky="W")
self.var = StringVar()
self.var.set('No data') # default option
popupMenu = OptionMenu(choicewin, self.var, *choicelist)
popupMenu.grid(sticky=N+S+E+W, row =1, column = 0)
Button(choicewin, text='Done', command=self.buttonfn).grid(row=2, column=0)
def buttonfn(self):
print(self.var.get())
if __name__ == '__main__':
choicewin = Tk()
choicewin.resizable(False, False)
choicewin.title("ChoiceBox")
app = Choices(choicewin, ['one','two','three'])
choicewin.mainloop()