Creating PyQt Layouts for GUI Python Applications

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ก.ย. 2024
  • PyQt’s layout managers provide a user-friendly and productive way of arranging graphical components, or widgets, on a GUI. Laying out widgets properly will make your GUI applications look polished and professional. Learning to do so efficiently and effectively is a fundamental skill for you to get up and running with GUI application development using Python and PyQt.
    Note: For a better understanding of how to use layout managers, some previous knowledge of how to create PyQt GUI applications and how to work with PyQt widgets would be helpful.
    Click here to learn more: realpython.com...

ความคิดเห็น • 16

  • @rubycon9158
    @rubycon9158 3 ปีที่แล้ว +3

    Please keep this coming! I'm still pretty new to pyqt/pyside and i really want to know how to properly make a flexible UI

  • @21MJF
    @21MJF 3 ปีที่แล้ว +1

    Excellent video. Cristal clear instructions.

  • @enochmvula-ck3gy
    @enochmvula-ck3gy 4 หลายเดือนก่อน

    I can't find the playlist on you're profile, what's the name

  • @robpersonalteacher4162
    @robpersonalteacher4162 2 ปีที่แล้ว

    Man, I really loved your video and the way you explain it. Please, keep it going.

  • @none.7026
    @none.7026 3 ปีที่แล้ว +3

    pls complete the series !

  • @ironF5
    @ironF5 2 ปีที่แล้ว +1

    a link to this playlist should have been in description... or create a seperate playlist for pyqt5

  • @AnasMations
    @AnasMations 2 ปีที่แล้ว

    Thank you so much for this tutorial!

  • @paulmill9816
    @paulmill9816 2 ปีที่แล้ว

    Hi...is PYQT good for a whiteboard desktop app?

  • @Simasofa
    @Simasofa 28 วันที่ผ่านมา

    Christian hello! this voice I can recognize!

  • @pythongui5199
    @pythongui5199 3 ปีที่แล้ว

    Very nice, thanks.

  • @bennguyen1313
    @bennguyen1313 3 ปีที่แล้ว

    I've been experimenting with improving the performance of PyQtGraph.. specifically I'd like to instantiate my Widget, and pass it it a pipe.
    Is there a way to do that without creating a custom class that extends both a pyqt widget and multiprocessing?
    For example, this inherits from ONLY Qt,
    class MainWindowReceiver(QtWidgets.QMainWindow):
    def __init__(self, *args, **kwargs):
    super(MainWindowReceiver, self).__init__(*args, **kwargs)
    And can be instantiated without passing any argument:
    main = MainWindowReceiver()
    main.show()
    However, if I create a class that inherits from both PyQt AND multiprocessing,
    class MainWindowReceiver(QtWidgets.QMainWindow , mp.Process):
    #super(Process, self).__init__(*args, **kwargs)
    then NONE of these work:
    out_pipe = mp.Pipe()
    p1 = MainWindowReceiver(out_pipe) #doesn't work
    p1 = MainWindowReceiver(pipe=out_pipe) #doesn't work
    p1 = MainWindowReceiver(,pipe=out_pipe) #doesn't work
    p1.show()
    How would the class be constructed, such that instantiation only requires the pipe argument?
    Alternatively, how would you pass a pipe WITHOUT multiple inheritance?

    • @Musava
      @Musava 3 ปีที่แล้ว +1

      Hello, I suggest you to ask these types of questions on Stackoverflow

  • @BukkyOdunsi
    @BukkyOdunsi 2 ปีที่แล้ว +1

    Please I'm looking for the next video after this

  • @anand_dudi
    @anand_dudi 3 ปีที่แล้ว

    where is vertical layout video

  • @aaroncatolico7550
    @aaroncatolico7550 2 ปีที่แล้ว

    Yeah, but PyQt wants you to pay at least $550 to get their GPL license to distribute their software as well as sharing your code.