我正在学习Python。我使用tkinter作为gui。
我无法在按钮中设置前景色和背景色。
import sys
import tkinter as tk
root = tk.Tk()
root.title("Sandwich")
root.geometry("500x250+800+100")
def helloButton():
print('hello button')
myLabel1 = tk.Label(text="Label one",fg='red',bg='green').grid(row=0,column=0,sticky='w')
myButton1 = tk.Button(text="Enter",activebackground='red',bg="blue",command=helloButton).grid(row=0,column=1)
tk.mainloop()