我正在尝试使用该withdraw
方法,但它不起作用。这是我的代码:
from tkinter import *
class GameBoard(Frame):
def __init__(self):
top = Toplevel()
Frame.__init__(self)
self.master.title("test")
self.grid()
#button frame
self.__buttonPane = Frame(self)
self.__buttonPane.grid()
#buttons
self.__buttonA1 = Button(self.__buttonPane,text = "A1",command = self._hide)
self.__buttonA1.grid()
def _hide(self):
top.withdraw()
def main():
GameBoard().mainloop()
main()
我将如何制作我的命令以隐藏顶层创建的窗口?我希望能够在主程序需要之前隐藏它。