+ With a popup menu (see wxWindow::PopupMenu), there is a variety of ways to
+ handle a menu selection event (@c wxEVT_COMMAND_MENU_SELECTED):
+ - Provide @c EVT_MENU handlers in the window which pops up the menu, or in an
+ ancestor of that window (the simplest method);
+ - Derive a new class from wxMenu and define event table entries using the @c EVT_MENU macro;
+ - Set a new event handler for wxMenu, through wxEvtHandler::SetNextHandler,
+ specifying an object whose class has @c EVT_MENU entries;
+
+ Note that instead of static @c EVT_MENU macros you can also use dynamic
+ connection; see @ref overview_events_bind.