December 2015
Beginner to intermediate
350 pages
6h 49m
English
In this recipe, we will add a menu bar to our main window, add menus to the menu bar, and then add menu items to the menus.
We will start by learning the techniques of how to add a menu bar, several menus and a few menu items to show the principle of how to do it. Clicking on a menu item will have no effect. Next, we will add functionality to the menu items, for example, closing the main window when clicking the Exit menu item and displaying a Help | About dialog.
We are continuing to extend the GUI we created in the current and previous chapter.
First, we have to import the Menu class from tkinter. Add the following line of code to the top of the Python module, where the import statements live:
from ...
Read now
Unlock full access