Using menus in tkinter

preview_player
Показать описание
A video on using menus in tkinter. You can either create a menu bar at the top or a dedicated drop-down button.
Рекомендации по теме
Комментарии
Автор

Great tutorial video, which helped me much understanding "The Menu". There's one thing I advise: the menu bar variable is called "menu" (not only here but widespread in the web) which leads to kind of confusion when added to the (top level) window in `window.configure(menu = menu)`. I recommend - especially for beginners - to use `menubar = tk.Menu(window)` and then you get `window.configure(menu = menubar)`. This way it's more obvious which is which... Anyway - I really like this video: Thank you!!!

ohno
Автор

Thank you so much sir for your all awesome videos. I watch all your videos.❤🎉

sonu-jangir
Автор

can u supply the url for thta site please

SuperKevinFS
Автор

I wonder, why did you use the tk widget in this case instead of ttk. Is it because tk might be more straightforward than ttk?

janlochman