Comments on: Python Tkinter Menu https://coderslegacy.com/python/python-gui/python-tkinter-menu/ Imparting knowledge to the Future Wed, 21 Jun 2023 10:22:53 +0000 hourly 1 By: Siddiqi https://coderslegacy.com/python/python-gui/python-tkinter-menu/#comment-1939 Wed, 21 Jun 2023 10:22:53 +0000 https://codersrefuge.000webhostapp.com/?page_id=965#comment-1939 In reply to Pete.

Corrected! Thanks for pointing it out.

]]>
By: Pete https://coderslegacy.com/python/python-gui/python-tkinter-menu/#comment-1933 Sun, 18 Jun 2023 19:12:51 +0000 https://codersrefuge.000webhostapp.com/?page_id=965#comment-1933 In the list of Tkinter menu options add_seperator() should be add_separator(). A simple spelling mistake, but it can really confuse and frustrate us newbies. haha

]]>
By: Gnanesh https://coderslegacy.com/python/python-gui/python-tkinter-menu/#comment-1490 Fri, 16 Dec 2022 02:37:16 +0000 https://codersrefuge.000webhostapp.com/?page_id=965#comment-1490 In reply to David Saylor.

You can do this, adding to the example 2 above:

submenu = tk.Menu(filemenu, tearoff=0)
submenu.add_command(label=”SubItem1″, command=empty_func)
filemenu.add_cascade(label=”Branch”, menu=submenu)

]]>
By: David Saylor https://coderslegacy.com/python/python-gui/python-tkinter-menu/#comment-1377 Fri, 26 Aug 2022 20:00:11 +0000 https://codersrefuge.000webhostapp.com/?page_id=965#comment-1377 how would I add a submenu to a menu?

]]>