Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有 2 个显示不同表单的文件,一个登录和一个主菜单。单击登录后如何打开我的主菜单表单(假设信息正确)?
当 Tkinter 启动时,您会自动获得一个窗口。此窗口称为根窗口或主窗口,只要应用程序正在运行,它就必须存在(尽管它可以隐藏)。
要创建其他窗口,您需要创建类Toplevel的实例。
如果您尝试模拟所有内容都在一个窗口中的 Web GUI,您可以选择不同的策略。例如,您的登录表单和主表单都可以在Frame的各个实例中实现。然后,在用户登录后,您可以从根窗口中删除登录表单并将其替换为您的其他表单。