widget组件 Label的使用
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2017/7/27 下午1:32
# @Author : hukezhu
# @Site :
# @File : 0727-02.py
# @Software: PyCharm
from Tkinter import *
#实例化TK类
app = Tk()
#设置窗口的标题
app.wm_title('Python')
#实例化一个label,第一个参数指定在哪个窗口之内,具体可以去看Label的源码部分,底部会贴出源码
label = Label(app,text='Hello World!')
#将label加到父容器中
label.pack()
#进行事件循环
app.mainloop()
运行效果图
附:Label的源码
可以发现Label的一些属性,可以自己尝试使用
class Label(Widget):
"""Label widget which can display text and bitmaps."""
def __init__(self, master=None, cnf={}, **kw):
"""Construct a label widget with the parent MASTER.
STANDARD OPTIONS
activebackground, activeforeground, anchor,
background, bitmap, borderwidth, cursor,
disabledforeground, font, foreground,
highlightbackground, highlightcolor,
highlightthickness, image, justify,
padx, pady, relief, takefocus, text,
textvariable, underline, wraplength
WIDGET-SPECIFIC OPTIONS
height, state, width
"""
Widget.__init__(self, master, 'label', cnf, kw)
网友评论