May-15-2020, 11:43 PM
I've googled this but can't find an answer. I just want to make the text on a button bold.
How to make button text bold in Tkinter?
|
May-15-2020, 11:43 PM
I've googled this but can't find an answer. I just want to make the text on a button bold.
May-16-2020, 12:53 AM
import tkinter as tk root = tk.Tk() button = tk.Button(None, text='Button', font='sans 16 bold').pack() root.mainloop()
I welcome all feedback.
The only dumb question, is one that doesn't get asked. My Github How to post code using bbtags Download my project scripts
May-16-2020, 02:53 AM
Thank you
|
|