Commit 7c082a38 by BellCodeEditor

save project

parent f9d22eaa
Showing with 6 additions and 1 deletions
......@@ -2,6 +2,10 @@ import tkinter as tk
root=tk.Tk()
root.title('Log in')
root.geometry('400x320+500+300')
e1=tk.Entry(root,show=None,font=('楷体',14),bg='yellow',width=18)
e1=tk.Entry(root,show=None,font=('楷体',14),bg='red',width=18)
e1.place(x=140,y=80)
e2=tk.Entry(root,show=None,font=('楷体',14),bg='yellow',width=18)
e2.place(x=140,y=120)
e3=tk.Entry(root,show='*',font=('楷体',14),bg='blue',width=18)
e3.place(x=140,y=160)
root.mainloop()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment