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

Tkinter Text 위젯에서 텍스트를 중앙에 맞추려면 어떻게 합니까?

<시간/>

Tkinter 텍스트 위젯은 여러 줄 텍스트 입력 위젯입니다. 입력 필드에 텍스트 데이터를 삽입, 삭제 및 추가하는 데 사용됩니다. 위젯 클래스에 많은 내장 함수와 속성을 제공합니다.

Tkinter Text 위젯의 CENTER에서 텍스트를 구성하고 정렬하려면 justify=CENTER 를 사용할 수 있습니다. 재산.

예시

# Import the required libraries
from tkinter import *

# Create an instance of tkinter frame or window
win=Tk()

# Set the size of the window
win.geometry("700x350")

text=Text(win)

# Configure the alignment of the text
text.tag_configure("tag_name", justify='center')

# Insert a Demo Text
text.insert("1.0", "How do I center align the text " "in a Tkinter Text widget?")

# Add the tag in the given text
text.tag_add("tag_name", "1.0", "end")
text.pack()

win.mainloop()

출력

위의 코드를 실행하여 텍스트 위젯의 중앙에 샘플 텍스트가 배치된 창을 표시하십시오.

Tkinter Text 위젯에서 텍스트를 중앙에 맞추려면 어떻게 합니까?