Commit d70bbd5d by BellCodeEditor

save project

parent 076005fb
Showing with 26 additions and 0 deletions
......@@ -2,5 +2,31 @@ import tkinter
root=tkinter.Tk()
root.geometry('400x300+500+200')
root.title('超级NB的窗口')
yee1 = tkinter.Entry(root,show=None,font=('宋体',20),bg='brown',width=15)
yee1.place(x=100,y=100)
yee2 = tkinter.Entry(root,show='*',font=('宋体',20),bg='yellow',width=15)
yee2.place(x=100,y=180)
yee3 = tkinter.Entry(root,show='*',font=('宋体',20),bg='yellow',width=15)
yee3.place(x=100,y=220)
L = tkinter.Label(root,text='我是一个没有用的窗口',font=('宋体',14),fg='red',bg='blue',width=40,height=2)
L.place(x=0,y=20)
root.mainloop()
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