Python GUI编程(Tkinter)Label控件

Posted i勤能补拙

tags:

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

import tkinter

win = tkinter.Tk()
win.title("sunck")
win.geometry("400x400+200+20")

‘‘‘
Label:标签控件可以显示文本
‘‘‘
#win 父窗体
#text 显示的文本内容
#bg 背景色
#fg 字体颜色
#wraplength 指定text文本中多宽进行换行
#justify 设置换行后的对齐方法
#anchor 位置 n北 e东 s南 w西 center居中 ne se sw nw
label = tkinter.Label(win,
text="sunck",
bg="blue",
fg="red",
font=("黑体", 20),
width=10,
height=4,
wraplength=100,
justify="left",
anchor="center")

#显示出来
label.pack()
win.mainloop()

以上是关于Python GUI编程(Tkinter)Label控件的主要内容,如果未能解决你的问题,请参考以下文章

Python GUI编程(Tkinter)

Tkinter开发第一个桌面程序HelloWorld

Python GUI编程(tkinter)

Python GUI编程(Tkinter)Menu顶层菜单

Python GUI编程(Tkinter) windows界面开发

Python GUI编程(Tkinter)Scale控件