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

Tkinter에서 창 관리자(wm) 속성을 어떻게 사용합니까?

<시간/>

창 관리자는 'wm' 명령으로 액세스할 수 있는 Tcl/Tk에서 사용할 수 있는 툴킷입니다. . 'wm' 명령을 사용하면 Tkinter 창의 모양과 형상을 설정할 수 있습니다. 이 명령으로 제목, 색상, 크기 및 기타 속성을 제어할 수 있습니다. 'wm' 명령에는 속성을 수정하는 데 사용할 수 있는 수많은 키워드가 있습니다.

예시

# Import the required library
from tkinter import *
from tkinter import ttk
from tkinter import messagebox

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

# Set the geometry
win.geometry("700x350")

Label(win, text="This window is disabled.",
   font=("Calibri, 24")).pack()

# Makes the window topmost
win.wm_attributes('-topmost', True)

# Makes the window transparent
win.wm_attributes('-alpha', 0.9)

# Disable the window
win.wm_attributes('-disabled', True)

# Set the geometry of the window
win.wm_geometry('700x350')

win.mainloop()

출력

위의 코드를 실행하면 wm 을 사용하여 창이 비활성화되므로 상호 작용할 수 없는 최상위 투명 창이 표시됩니다. 속성 "-disabled" .

Tkinter에서 창 관리자(wm) 속성을 어떻게 사용합니까?