Commit e7daf62a by BellCodeEditor

save project

parent d6baeba5
Showing with 4 additions and 1 deletions
......@@ -3,7 +3,10 @@ import tkinter
# 建立窗口对象
root = tkinter.Tk()
root.title("好康的") # 设置窗口标题
root.geometry("400x320+500+300") # 设置窗口大小
root.geometry("400x320+500+300")
root.resizable(width=False,height=False)
lyb=tkinter.Button(root,text="提交",fg="blue",width=15)
lyb.place(x=140,y=250) # 设置窗口大小
lab = tkinter.Label(root, text='您好!这里有好康♂的', font=('宋体', 15),
fg="black",width=40, height=2,bg="green")
lab.place(x=0,y=0)
......
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