Oct-10-2020, 10:58 AM
Hello,
How can I change the Tkinter menu font size, I can change the font size of other components , except menu

How can I change the Tkinter menu font size, I can change the font size of other components , except menu

import tkinter as tk
from tkinter import ttk
from tkinter import *
import tkinter.font as tkfont
root = tk.Tk()
root.option_add("*Font", ('Verdana', 30))
label = tk.Label(root, text = "Hello World")
label.pack(padx = 5, pady = 5)
menubar = tk.Menu(root)
menubar.add_command(label="Python", command=lambda: print("Python"))
menubar.add_command(label="Quit", command=root.destroy)
root.config(menu=menubar)
root.mainloop()thank!
