1
所以,這是我的代碼。基本上,我想要做的是製作一個背景顏色與顏色對話框中選擇的顏色相同的標籤,以便該人員可以看到顏色和顏色的十六進制代碼。請幫忙。如何用背景色作爲用戶選擇的顏色製作標籤?
import sys
from tkinter import *
from tkinter import colorchooser
mGui = Tk()
mGui.geometry("600x300+500+500")
mGui.title("Hexadecimal Color Chooser")
def getColor():
mycolor = colorchooser.askcolor()
label = Label(mGui, bg = mycolor).pack()
mycolor = str(mycolor)
start = mycolor.index("#")
stop = mycolor.index("')")
mycolor = mycolor[start:stop]
label = Label(mGui, text = "The hexadecimal color code is: " + mycolor).pack()
button = Button(mGui, text = "Choose a color", command = getColor).place(x=0, y=0)
哇感謝!這真的很有幫助 – user2975375