“Como aumentar a altura da entrada em Tknter” Respostas de código

Como aumentar a altura da entrada em Tknter

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

Conheça a altura do menu tknter

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

Respostas semelhantes a “Como aumentar a altura da entrada em Tknter”

Perguntas semelhantes a “Como aumentar a altura da entrada em Tknter”

Mais respostas relacionadas para “Como aumentar a altura da entrada em Tknter” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código