“So erhöhen Sie die Höhe des Eintritts in Tkinter” Code-Antworten

So erhöhen Sie die Höhe des Eintritts in 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

Kennen Sie die Höhe des Menüs 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 :)

Ähnliche Antworten wie “So erhöhen Sie die Höhe des Eintritts in Tkinter”

Fragen ähnlich wie “So erhöhen Sie die Höhe des Eintritts in Tkinter”

Weitere verwandte Antworten zu “So erhöhen Sie die Höhe des Eintritts in Tkinter” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen