“Cómo aumentar la altura de entrada en Tkinter” Código de respuesta

Cómo aumentar la altura de entrada en Tkinter

import tkinter
window = Tk()


# ------------------------ #
my_entry = Entry(width=15, font("Arial", 20, "bold") # You can't increase the
                 # height like width, but you can do it by increasing size of 
                 # of the font. Note: it will increase size of the symbols too.
# ------------------------ #


window.mainloop()
RSteepbroR

Conozca la altura del menú Tkinter

import tkinter as tk

#Init the window
window = tk.Tk()

#Creation and attachment of the Menu to the window
menuBar = tk.Menu(window)
window.config(menu = menuBar)

#Access to the menu's size in pixels wherever you are (in a function for example)
menuHeight = window.winfo_children()[3].winfo_reqheight() #Height of the menu
menuWidth = window.winfo_children()[3].winfo_reqwidth() #Width of the menu
Fuxilac :)

Respuestas similares a “Cómo aumentar la altura de entrada en Tkinter”

Preguntas similares a “Cómo aumentar la altura de entrada en Tkinter”

Más respuestas relacionadas con “Cómo aumentar la altura de entrada en Tkinter” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código