Using menus in tkinter

Поделиться
HTML-код
  • Опубликовано: 14 ноя 2024

Комментарии • 7

  • @ohno4496
    @ohno4496 4 месяца назад +3

    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!!!

  • @sonu-jangir
    @sonu-jangir Год назад +1

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

  • @SuperKevinFS
    @SuperKevinFS Год назад +4

    can u supply the url for thta site please

  • @العمرضوانابوالعز-غ3ن

    Great Video

  • @janlochman1985
    @janlochman1985 11 месяцев назад

    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?

  • @diver2048
    @diver2048 Год назад +1

    What about context menu?

  • @ElectroDrome
    @ElectroDrome 6 месяцев назад +1

    Where are the classes?