“Como mudar a fonte em tknter” Respostas de código

Como mudar a fonte em tknter

import tkinter.font as font

#create Font object
myFont = font.Font(family='Helvetica')

button = Button(parent, font=myFont)
#or
button = Button(parent)
button['font'] = myFont
Disturbed Dove

Fonte em tkinter

import tkinter.font as TkFont

font = tkFont.Font ( option, ... )
# Exaple
helv36 = tkFont.Font(family="Helvetica",size=36,weight="bold")
Smoggy Seal

Respostas semelhantes a “Como mudar a fonte em tknter”

Perguntas semelhantes a “Como mudar a fonte em tknter”

Mais respostas relacionadas para “Como mudar a fonte em tknter” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código