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

Python-3 Tkinter를 사용하여 경계 없는 전체 화면 응용 프로그램을 만드는 방법은 무엇입니까?

<시간/>

Tkinter 창을 테두리가 없는 전체 화면으로 만들기 위해 유틸리티 메서드 attributes('-fullscreen', True)를 사용할 수 있습니다. . Tkinter 창은 Tkinter 라이브러리에 정의된 함수와 메서드를 사용하여 구성할 수 있습니다.

Tkinter가 애플리케이션 창을 전체 화면으로 만들기 위해 제공하는 또 다른 유사한 방법은 overrideredirect(True)입니다. . 이 메서드는 애플리케이션이 정의된 너비와 높이로만 크기를 조정해야 하는 경우에만 호출할 수 있습니다.

예시

#Import the required Libraries
from tkinter import *
#Create an instance of Tkinter frame
win= Tk()
#Set the Geometry
win.geometry("750x250")
#Full Screen Window
win.attributes('-fullscreen', True)
def quit_win():
   win.destroy()
#Create a Quit Button
button=Button(win,text="Quit", font=('Comic Sans', 13, 'bold'), command= quit_win)
button.pack(pady=20)
win.mainloop()

출력

위의 코드를 실행하면 전체 화면 창이 표시됩니다.

Python-3 Tkinter를 사용하여 경계 없는 전체 화면 응용 프로그램을 만드는 방법은 무엇입니까?

전체 화면 창을 닫으려면 "종료" 버튼을 클릭하십시오.