Skip to content Skip to sidebar Skip to footer

Making Multiple Menu's In Tkinter

Tried searching for this and could not find a suitable answer. I know we can do the following to create a menu to the root window in tkinter menu = Menu(root) some_menu = Menu(menu

Solution 1:

You can have only a single menubar at the top of an application. This menubar can have as many child ("cascade") menus on it that will fit on the screen. On some platforms, you can also add commands to the top menubar, but from a usability standpoint that is a bad idea.


Post a Comment for "Making Multiple Menu's In Tkinter"