如何在 Tkinter 中更改标签上的文本大小?
Tkinter 中的标签 控件用于在 Tkinter 应用程序中显示文本和图像。为了更改标签控件的属性,如其字体属性、颜色、背景颜色、前景颜色等,你可以使用configure()方法。
如果要更改“标签”控件中文本的大小,那么可以在控件构造函数中配置font=('字体族 字体大小 样式')属性。
示例
# Import the required libraries from tkinter import * import tkinter.font as tkFont # Create an instance of tkinter frame or window win=Tk() # Set the size of the tkinter window win.geometry("700x350") def font_style(): label.config(font=('Helvetica bold', 26)) # Create a Label label = Label(win, text="Click the Button to Change the Font Style.", font=('Times', 24)) label.pack() b1 = Button(win, text="Change the Label Size", command=font_style) b1.pack() win.mainloop()
输出
当你运行以上代码时,它将显示一个带有标签控件和一个按钮的窗口,该按钮用于更改标签的字体样式。
现在,单击“更改标签大小”按钮,它将修改标签的字体样式。
广告