Background color for Tk in Python

后端 未结 5 1326
青春惊慌失措
青春惊慌失措 2020-12-25 09:40

I\'m writing a slideshow program with Tkinter, but I don\'t know how to change the background color to black instead of the standard light gray. How can this be done?

<
5条回答
  •  天涯浪人
    2020-12-25 10:42

    Its been updated so

    root.configure(background="red")
    

    is now:

    root.configure(bg="red")
    

提交回复
热议问题