美文网首页Python资源收集
Python GUI ---Tkinter-02

Python GUI ---Tkinter-02

作者: hu9134 | 来源:发表于2017-07-27 13:59 被阅读31次

    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)
    
    

    相关文章

      网友评论

        本文标题:Python GUI ---Tkinter-02

        本文链接:https://www.haomeiwen.com/subject/voezkxtx.html