thinter笔记

Posted zw~菜园子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinter笔记相关的知识,希望对你有一定的参考价值。

from tkinter import *
root = Tk()          父实例
w = Label(root,text="hello")  
w.pack()
root.mainloop()

技术分享

from tkinter import *
widget = Label(None,text=hello)   会自动创建TK对象
widget.pack(expand=YES,fill=BOTH)   内容会随着移动,允许标签随着父主件扩展fill=BOTH(水平、垂直),fill=Y(垂直),fill=X(水平)
widget.mainloop()

技术分享

像字典一样进行显示内容

from tkinter import *
widget = Label()
widget[text]="hello world"
widget.pack(side=TOP)   内容显示在窗口的上面
widget.mainloop()

技术分享

form tkinter import *
root = Tk()
widget = Label(root)
widget.config(text="hello !我是配置信息")
widget.pack(side=LEFT,expand=YES,fill=BOTH)
root.title(我是标题)
root.mainloop()

技术分享

添加按钮

from tkinter import *
import sys
root = Tk()
Button(root,text="press",command=sys.exit).pack(side=LEFT)root.mainloop()

技术分享

 

以上是关于thinter笔记的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记:python3,代码片段(2017)

[原创]java WEB学习笔记61:Struts2学习之路--通用标签 property,uri,param,set,push,if-else,itertor,sort,date,a标签等(代码片段

sh bash片段 - 这些片段大多只是我自己的笔记;我找到了一些,有些我已经找到了

需要一种有效的方法来避免使用 Laravel 5 重复代码片段

Oracle-常用数据库对象笔记(片段)

用 Python 打造属于自己的GUI图形化界面