Python >> Tutoriel Python >  >> Python GUI >> Tkinter GUI

Python 3 Tkinter Augmenter la taille ou l'échelle du texte et la taille de la police de l'application de bureau de l'interface graphique du widget d'étiquette

Python 3 Tkinter augmente la taille ou l'échelle du texte et la taille de la police de l'application de bureau de l'interface graphique du widget d'étiquette

#Import the required libraries
from tkinter import *

#Create an instance of tkinter frame
win= Tk()

#Set the geometry of frame
win.geometry("650x250")

#Define all the functions
def size_1():
   text.config(font=('Helvatical bold',20))

def size_2():
   text.config(font=('Helvetica bold',40))

#Create a Demo Label to which the changes has to be done
text=Label(win, text="Hello World!")
text.pack()

#Create a frame
frame= Frame(win)

#Create a label
Label(frame, text="Select the Font-Size").pack()

#Create Buttons for styling the label
button1= Button(frame, text="20", command= size_1)
button1.pack(pady=10)

button2= Button(frame, text="40", command=size_2)
button2.pack(pady=10)

frame.pack()
win.mainloop()