Tkinter 창은 응용 프로그램이 원활하게 작동하는 데 도움이 되는 많은 내장 기능과 속성을 제공합니다. 애플리케이션의 GUI도 구성합니다.
애플리케이션에서 투명한 창을 만들고 싶다면 attributes('-transparentcolor', 'color' )에서 색상을 정의해야 합니다. 방법. 창과 위젯의 색상을 제공하여 창을 투명하게 만듭니다.
예
#Import the Tkinter Library from tkinter import * #Create an instance of Tkinter Frame win = Tk() #Set the geometry of window win.geometry("700x350") #Add a background color to the Main Window win.config(bg = '#add123') #Create a transparent window win.wm_attributes('-transparentcolor','#add123') win.mainloop()
출력
위의 코드를 실행하면 투명한 배경의 창이 표시됩니다.