tkinter创建窗口

from tkinter import *

root=Tk()
root.geometry("300x200+300+200")
root.title("虚拟窗口")
root.config(bg="red")

Label(root,text="用户名",width=6).place(x=1,y=1)
Entry(root,width=20).place(x=45,y=1)
Label(root,text="密码",width=6).place(x=1,y=20)
Entry(root,width=20,show="*").place(x=45,y=20)
Button(root,text="登录",width=8).place(x=40,y=40)
Button(root,text="取消",width=8).place(x=110,y=40)
root.mainloop()

 

你可能感兴趣的:(python)