Tkinter Menu Button Widget Tutorial

preview_player
Показать описание
In this Tkinter tutorial, we will further expand on Menu's and create Menu buttons. Menu Buttons are a simple GUI widget, which when clicked, will reveal a drop down menu. This drop down menu is identical to the Menu Widget.

Related Links:

Tkinter Series - Video Links:

Website Tutorial Links:
Рекомендации по теме
Комментарии
Автор

I just cannot thank you enough, I'm working on the backend GUI of my project and this came in very helpful. Thanks mate 👍

samuelaniogbu
Автор

Esse vídeo foi perfeito para mim, muito obrigado.

lucianohanzo
Автор

Why use:
def __init__ (self, master):
self.master = root

Why not:
def __init__ (self, master):
self.master = master

I know what you use works but is it the right way? I'm still new at Tkinter/Python and just want to understand.

fhtommy