我正在使用 Python 3.2 for Windows 和 Tkinter 8.5。有谁知道是否可以通过在列表框中选择一个项目并在文本小部件上显示文本文件内容来打开文本文件?这是我的代码:
def starters_menu():
self.listBox.delete(0, END)
starters_menu = open("starters_menu.txt")
for line in starters_menu:
line = line.rstrip()
self.listBox.insert(END, line)
self.listBox.bind("<ButtonRelease-1>", recipe_title, add="+")
self.listBox.bind("<ButtonRelease-1>", recipe_ingredients, add="+")
recipe_menu.add_command(label="Starters, Snacks and Savouries", command=starters_menu)
我需要帮助来编写“recipe_ingredients”的定义,以便在选择列表中的项目时,打开链接到该项目的文本文件并将其内容显示在文本小部件中。我需要知道如何将文件链接到列表框项以及如何使用上面代码中显示的处理程序调用它。