Answers for "tkinter button background color not working mac"

2

tkinter button background color mac

#Use highlightbackground=color
#For example:

submit = Button(root, text="Generate", highlightbackground='#3E4149')
Posted by: Guest on June-03-2020
0

tkinter button color doesn't working mac

from tkinter import *
from tkmacosx import Button

root = Tk()

B1 = Button(root, text='Mac OSX', bg='black',fg='green', borderless=1)
B1.pack()

root.mainloop()
Posted by: Guest on June-26-2021

Code answers related to "tkinter button background color not working mac"

Python Answers by Framework

Browse Popular Code Answers by Language