按钮颜色不起作用,tkinter Python3

时间:2017-06-22 08:54:32

标签: python-3.x tkinter

我正在学习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()

渲染时,按钮不显示前景色和背景色。 请指教。 enter image description here

0 个答案:

没有答案