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

Tkinter 클래스의 title() 및 wm_title() 메서드의 차이점

<시간/>

Tkinter는 많은 함수와 내장 메소드를 포함하는 명확한 클래스 계층 구조를 가지고 있습니다. 응용 프로그램을 만들 때 이러한 기능을 사용하여 구성 요소의 구조를 구축합니다. wm 클래스는 mixin 인 "창 관리자"를 나타냅니다. 많은 내장 함수와 메서드를 제공하는 클래스입니다.

wm_title() 메서드 tkinter 창의 제목을 변경하는 데 사용됩니다. 그러나 대안으로 win.title() 을 사용할 수도 있습니다. 방법. 일반적으로 wm 클래스는 윈도우 서비스와 통신할 수 있는 많은 메소드를 제공합니다.

예시

# 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")
win.wm_title("This is the Title")

# Add A label widget
Label(win, text="Welcome to TutorialsPoint✨ \n" "You are browsing the best resource for Online Education.", font=('Aerial 18 italic')).place(x=50, y=150)

win.mainloop()

출력

위의 코드를 실행하여 Label 텍스트 위젯이 포함될 창을 표시하십시오.

Tkinter 클래스의 title() 및 wm_title() 메서드의 차이점