Answers for "How to increase font size tkinter"

5

How to increase text size tkinter

label = Label(root, text="WELCOME TO ScOMPANY", font=("Courier", 44))
Posted by: Guest on April-02-2021
-1

set label text size tkinter

label.config(font=("Courier", 44))
Posted by: Guest on March-13-2020
-2

how to change font size of all widgets in tkinter

root.option_add('*Font', '19')
Posted by: Guest on September-06-2021

Code answers related to "How to increase font size tkinter"

Python Answers by Framework

Browse Popular Code Answers by Language