Saltar al contenido

ejemplo de código de tamaño de fuente de etiqueta de python tkinter

Contamos con tu ayuda para extender nuestros enunciados con relación a las ciencias de la computación.

Ejemplo 1: tkinter cambia la familia de fuentes y el tamaño de la etiqueta

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()

Ejemplo 2: cómo cambiar la fuente de una etiqueta en tkinter

#How to change the font of a label in Tkinter#Import from tkinter import*#Screen
window = Tk()
window.title("New Window")
window.geometry("300x250")

Label(window, text ="This is my new project in python!", font =("Bahnschrift",14)).pack()#-------------------------------------------------------------------------------------------#'font' tells python that we are going to do something with the font#-------------------------------------------------------------------------------------------#'()' are needed becuase that is just how python works#-------------------------------------------------------------------------------------------#'"___"' put your font name in the quotes#-------------------------------------------------------------------------------------------#10 put vyour fontsize after adding a comma after the font name#-------------------------------------------------------------------------------------------

Ejemplo 3: python tkinter define el tamaño de la ventana

window = Tk()#set window size
window.geometry("widthxheight")

Ejemplo 4: establecer el tamaño del texto de la etiqueta tkinter

label.config(font=("Courier",44))

Ejemplo 5: tamaño de fuente de la etiqueta tkinter

pythonCopyimport tkinter as tk
import tkinter.font as tkFont
    
app = tk.Tk()

fontStyle = tkFont.Font(family="Lucida Grande", size=20)

labelExample = tk.Label(app, text="20", font=fontStyle)defincrease_label_font():
    fontsize = fontStyle['size']
    labelExample['text']= fontsize+2
    fontStyle.configure(size=fontsize+2)defdecrease_label_font():
    fontsize = fontStyle['size']
    labelExample['text']= fontsize-2
    fontStyle.configure(size=fontsize-2)
    
buttonExample1 = tk.Button(app, text="Increase", width=30,
                          command=increase_label_font)
buttonExample2 = tk.Button(app, text="Decrease", width=30,
                          command=decrease_label_font)

buttonExample1.pack(side=tk.LEFT)
buttonExample2.pack(side=tk.LEFT)
labelExample.pack(side=tk.RIGHT)
app.mainloop()

Te mostramos las reseñas y valoraciones de los lectores

Si te ha resultado provechoso este artículo, sería de mucha ayuda si lo compartes con más entusiastas de la programación de este modo contrubuyes a difundir nuestro contenido.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *