Tkinter - Pygubu Designer - Menus

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

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

  • @sovereignlivingsoul
    @sovereignlivingsoul 5 месяцев назад

    it will be very useful when i try to port my ttk and ctk program into Pygubu

  • @fauxgil4047
    @fauxgil4047 10 месяцев назад

    Great video! One question though, how do you bind the shortcut you showed on the menu options? Like for the Open Command the user has to press Ctrl+O, is there anyway I can bind that shortcut combination in Pygubu?

  • @philallen6777
    @philallen6777 7 месяцев назад

    Really good tutorials, well explained.
    I am trying to find a way to implement a scrolled listbox.
    I can see how to do it with tkinter but struggling to see how to connect a scrollbar to a listbox in Pygubu.
    Can you please make a tutorial on this.
    Phil

  • @ahmedragala3946
    @ahmedragala3946 Год назад

    Thanks!

  • @bplus4427
    @bplus4427 Год назад

    Thank you very much 🙏🏻.

  • @praveenremix6421
    @praveenremix6421 Год назад

    i have a question here, if have lots of function coding in my .py file and i do some major changes in ui in gubu, and generate the the code and copy paste it to my .py file my all coding work is overlaped. is there solution for this?

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

      What I do is: I generate the code only one-time (the first time). Then if I make changes to the .ui file (using Pygubu) at a later date, I save the Pygubu project (.ui file), and I edit my code manually. Also, when code is generated in Pygubu (from the Application tab), it generates a class. So the logic of your application can still be separate from the class that Pygubu generates.

    • @praveenremix6421
      @praveenremix6421 Год назад

      @@jobinpy thank you for your help