Tkinter Backgroud 색상을 설정하는 방법
Tkinter 위젯 클래스 메소드 configure
및 속성 bg
또는 backgroud
를 사용하여 Tkinter 위젯 / 창 배경색을 설정할 수 있습니다.
configure(background= )
메소드
try:
import Tkinter as tk
except:
import tkinter as tk
app = tk.Tk()
app.title("configure method")
app.geometry("300x200")
app.configure(bg="red")
app.mainloop()
여기,
app.configure(bg='red')
는 app
의 배경색을 red
로 설정합니다. bg
대신 background
를 사용할 수도 있습니다.
app.configure(background='red')
bg
또는 background
속성
background
또는 bg
는 대부분의 Tkinter 위젯에서 하나의 속성이며 배경색을 직접 설정하는 데 사용될 수 있습니다.
try:
import Tkinter as tk
except:
import tkinter as tk
app = tk.Tk()
app.title("bg attribute")
app.geometry("300x200")
app["bg"] = "blue"
app.mainloop()
Tkinter 색상 코드
위에 표시된 것처럼 red
,blue
또는 green
과 같은 알려진 이름으로 색상을 지정할 수 있으며 HTML 에서 16 진수 색상 코드와 같은 RGB 를 통해 색상을 지정할 수도 있습니다 (예 :#49A
또는#0059b3
.
try:
import Tkinter as tk
except:
import tkinter as tk
app = tk.Tk()
app.title("bg attribute")
app.geometry("300x200")
app["bg"] = "#0059b3"
app.mainloop()
try:
import Tkinter as tk
except:
import tkinter as tk
app = tk.Tk()
app.title("bg attribute")
app.geometry("300x200")
app["bg"] = "#49A"
app.mainloop()
Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.
LinkedIn Facebook