Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Tkinter에서 레이블의 텍스트 크기를 변경하는 방법은 무엇입니까?

<시간/>

레이블 Tkinter의 위젯은 Tkinter 응용 프로그램에서 텍스트와 이미지를 표시하는 데 사용됩니다. 글꼴 속성, 색상, 배경색, 전경색 등과 같은 레이블 위젯의 속성을 변경하려면 configure()를 사용할 수 있습니다. 방법.

레이블 위젯의 텍스트 크기를 변경하려면 font=('font-family font-size style')를 구성할 수 있습니다. 위젯 생성자의 속성입니다.

예시

# 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()

출력

위의 코드를 실행하면 레이블 위젯과 레이블의 글꼴 스타일을 변경할 수 있는 버튼이 있는 창이 표시됩니다.

Tkinter에서 레이블의 텍스트 크기를 변경하는 방법은 무엇입니까?

이제 "라벨 크기 변경" 버튼을 클릭하면 라벨의 글꼴 스타일이 수정됩니다.

Tkinter에서 레이블의 텍스트 크기를 변경하는 방법은 무엇입니까?