“Comment augmenter la hauteur de l'entrée dans Tkinter” Réponses codées

Comment augmenter la hauteur de l'entrée dans 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

connaître la hauteur du menu 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 :)

Réponses similaires à “Comment augmenter la hauteur de l'entrée dans Tkinter”

Questions similaires à “Comment augmenter la hauteur de l'entrée dans Tkinter”

Plus de réponses similaires à “Comment augmenter la hauteur de l'entrée dans Tkinter” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code