Answers for "how to change the font size of the label without font module in tkinter in python"

7

tkinter change font family and size of label

from tkinter import *
import tkinter.font as font

gui = Tk(className='Python Examples - Button')
gui.geometry("500x200")

# define font
myFont = font.Font(family='Helvetica', size=20, weight='bold')

# create button
button = Button(gui, text='My Button', bg='#0052cc', fg='#ffffff')
# apply font to the button label
button['font'] = myFont
# add button to gui window
button.pack()

gui.mainloop()
Posted by: Guest on April-14-2020

Code answers related to "how to change the font size of the label without font module in tkinter in python"

Python Answers by Framework

Browse Popular Code Answers by Language