“Schriftart in tkinter” Code-Antworten

So ändern Sie die Schriftart in tkinter

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

Schriftart in tkinter

import tkinter.font as TkFont

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

Ähnliche Antworten wie “Schriftart in tkinter”

Fragen ähnlich wie “Schriftart in tkinter”

Weitere verwandte Antworten zu “Schriftart in tkinter” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen