how to increase height of entry in tkinter code example
Example 1: know menu's height tkinter
import tkinter as tk
window = tk.Tk()
menuBar = tk.Menu(window)
window.config(menu = menuBar)
menuHeight = window.winfo_children()[3].winfo_reqheight()
menuWidth = window.winfo_children()[3].winfo_reqwidth()
Example 2: how to track window size while resizing in tkinter
from Tkinter import *
canvas = Canvas(bd=0, highlightthickness=0)
canvas.pack(fill=BOTH, expand=1)
def configure(event):
canvas.delete("all")
w, h = event.width, event.height
print(w)
print(h)
xy = 0, 0, w-1, h-1
canvas.create_rectangle(xy)
canvas.create_line(xy)
xy = w-1, 0, 0, h-1
canvas.create_line(xy)
canvas.bind("<Configure>", configure)
mainloop()