📜  隐藏根窗口 tkinter - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:15.063000             🧑  作者: Mango

代码示例1
root = tk.Tk()
# Hide it with .withdraw
root.withdraw()
# To reveal it again:
root.deiconify()