简体   繁体   中英

How to change the background color of the box in tkinter (python)

I am new to the python language, and I have been learning tkinter. However I wonder how can I change the background of the box that pops up in tkinter.

import time
import tkinter
from tkinter import *
import sys
import os
root = tkinter.Tk()

Using this you get a grey box that pops up. How to I change the color of that box?

Configure the root:

root.configure(background='red')

You can also directly assign it to the bg property:

root['bg'] = 'red'
root.configure(background='black')

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM