tkinter gui窗口没有​​打开,但是代码正在运行,退出代码为0

时间:2019-10-10 11:27:38

标签: python-3.x user-interface tkinter

from tkinter import *

def main_account_screen():

    main_screen = Tk()  
    main_screen.geometry("300x250")  
    main_screen.title("Account Login")  


    Label(text="Choose Login Or Register", bg="blue", width="300", height="2", font=("Calibri", 13)).pack()
    Label(text="").pack()


    Button(text="Login", height="2", width="30").pack()
    Label(text="").pack()


    Button(text="Register", height="2", width="30").pack()

    main_screen.mainloop()  

    main_account_screen()  

    tk.mainloop()

运行.py文件时,没有任何GUI。谁能帮我为什么这不起作用。我正在使用Pycharm,但我也尝试过使用常规python解释器运行程序。

0 个答案:

没有答案