如何通过使用colorchooser更改python 3中的tkinter窗口(背景)的颜色?

现在我做了这个:

from tkinter import colorchooser

def color1():
    color = colorchooser.askcolor()

最佳答案

对于名为root的窗口,要使用colorchooser更改背景颜色,您可以执行以下操作:

color = colorchooser.askcolor()
color_name = color[1]    #to pick up the color name in HTML notation, i.e. the 2nd element of the tuple returned by the colorchooser
root.configure(background=color_name)

关于python - 通过在python 3和tkinter中使用colorchooser更改tkinter窗口的背景颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15721126/

10-12 05:33