windows 第二次加载Tkinter窗口时出现问题

oiopk7p5  于 2023-11-21  发布在  Windows
关注(0)|答案(1)|浏览(203)

所以我试图使我开发的Tkinter应用程序的主菜单,但这里的问题,当我点击按钮打开另一个文件,这是另一个窗口,它是确定的,但当我关闭该窗口,并试图通过点击主菜单中的相同按钮再次打开它,我得到这个错误:

  1. Exception in Tkinter callback
  2. Traceback (most recent call last):
  3. File "c:\users\alireza\anaconda3\Lib\tkinter\__init__.py", line 1702, in __call__
  4. return self.func(*args)
  5. File "menu.py", line 32, in open_main
  6. root.destroy()
  7. File "c:\users\alireza\anaconda3\Lib\tkinter\__init__.py", line 2059, in destroy
  8. self.tk.call('destroy', self._w)
  9. _tkinter.TclError: can't invoke "destroy" command: application has been destroyed

字符串
这是我的主菜单文件(menu.py):

  1. from tkinter import *
  2. import tkinter.messagebox
  3. class Application:
  4. def __init__(self, master, *args, **kwargs):
  5. self.mainframe = Frame(master, width = 300, height = 400, bg = 'slategray1')
  6. self.mainframe.pack()
  7. self.main_button = Button (self.mainframe, width = 25, height = 2,bg = "SteelBlue2" , text = "Customer Service", command = self.open_main)
  8. self.main_button.place(x= 55, y =50 )
  9. self.add_to_db_button = Button (self.mainframe, width = 25, height = 2,bg = "SteelBlue2" , text = "Add Item To Inventory", command = self.open_add_to_db)
  10. self.add_to_db_button.place(x= 55, y =100 )
  11. self.update_button = Button (self.mainframe, width = 25, height = 2,bg = "SteelBlue2" , text = "Update Inventory Items", command = self.open_update)
  12. self.update_button.place(x= 55, y =150 )
  13. self.about_button = Button (self.mainframe, width = 25, height = 2,bg = "sea green" , text = "Credits", command = self.about)
  14. self.about_button.place(x= 55, y =300 )
  15. self.close_button = Button (self.mainframe, width = 25, height = 2,bg = "navajo white" , text = "Quit", command = self.close_window)
  16. self.close_button.place(x= 55, y =350 )
  17. def close_window(self, *args, **kwargs):
  18. root.destroy()
  19. def open_main(self, *args, **kwargs):
  20. import main
  21. root.destroy()
  22. def open_add_to_db(self, *args, **kwargs):
  23. import add_to_db
  24. root.destroy()
  25. def open_update(self, *args, **kwargs):
  26. from update import AppUpdate
  27. root.destroy()
  28. def about(self, *args, **kwargs):
  29. tkinter.messagebox.showinfo("About Me", "Programmed and designed by Alireza Bagheri.")
  30. root = Tk()
  31. root.title("Main Menu")
  32. root.resizable(False, False)
  33. b = Application(root)
  34. root.geometry("301x401+0+0")
  35. root.mainloop()


我不知道问题出在哪里,所以如果能给我指出正确的方向,

ojsjcaue

ojsjcaue1#

正如Idlehands评论的那样,我不认为你应该依赖import main来构建一个窗口,而是在main中定义一个函数(也许是build_window()?),然后你可以调用它,比如main.build_window()。这将确保你知道应该执行什么代码,并有助于避免错误。我尝试运行你的代码,无法复制错误,但却遇到了以下错误:

  1. ImportError: No module named 'main'
  2. ImportError: No module named 'update'
  3. ImportError: No module named 'add_to_db'
    因此,这不是你所面临的错误的最小、可验证和完整的示例代码。我们能做的最多是推测解决方案。我的推测是,如果你想“隐藏”一个稍后将返回的窗口,你应该.iconify()它,这将使它最小化到最小值。如果你在Tkinter小部件上调用.destroy(),该小部件将从内存中删除,如果你想要另一个,你将不得不定义它和.pack().place(),或.grid()它回到屏幕上!

相关问题