基本信息
源码名称:签名设计
源码大小:2.62KB
文件格式:.py
开发语言:Python
更新时间:2021-08-27
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
root = Tk() # 标题 root.title("设计") # 窗口大小 高      小x root.geometry("600x300") #窗口初始位置 root.geometry(" 500 200") # 标签控件 label = Label(root,text = "",font = ("文行楷",20),fg = 'red') # grid pack place label.grid() # 入框 entry = Entry(root,font=("雅黑",20))
entry.grid(row=0,column=1) # button = Button(root, text = '设计签',font = ("雅黑",20),command = download)
button.grid(row = 1,column = 0) # 消息循环    显示窗口 root.mainloop()