“Как увеличить высоту входа в Тинтер” Ответ

Как увеличить высоту входа в Тинтер

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

Знайте высоту меню Tkkinter

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

Ответы похожие на “Как увеличить высоту входа в Тинтер”

Вопросы похожие на “Как увеличить высоту входа в Тинтер”

Больше похожих ответов на “Как увеличить высоту входа в Тинтер” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования