PyQt5 tutorial - login Form GUI 04

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

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

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

    Bruh. You are the best QT Developer i have seen on RUclips. I almost gave up to use PyQT to have modern design. But your videos gave me a hope.

  • @REDPEGAZO
    @REDPEGAZO Год назад +13

    For those who did not get the background, for the second image:
    background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:00715909, stop:0 rgba(0, 0, 0, 9), stop:0.375 rgba(0, 0, 0, 50), stop:0.835227 rgba(0, 0, 0, 75));
    -------------------
    Other texts (background, etc)::
    --------------------
    background-color:rgba(0, 0, 0, 100);
    border-radius:20px;
    --------------------
    color:rgba(255, 255, 255, 210);
    --------------------
    background-color:rgba(0, 0, 0, 0);
    border:none;
    border-bottom:2px solid rgba(105, 118, 132, 255);
    color:rgba(255, 255, 255, 230);
    padding-bottom:7px;
    --------------------
    QPushButton#pushButton{
    background-color: qlineargradient(spread:pad, x1:0, y1:0.505682, x2:0, y2:0.477, stop:0 rgba(20, 47, 78, 219), stop:1 rgba(85, 98, 112, 226));
    color:rgba(255, 255, 255, 210);
    border-radius:5px;
    }
    QPushButton#pushButton:hover{
    background-color: qlineargradient(spread:pad, x1:0, y1:0.505682, x2:0, y2:0.477, stop:0 rgba(40, 67, 98, 219), stop:1 rgba(105, 118, 132, 256));
    }
    QPushButton#pushButton:pressed{
    padding-left:5px;
    padding-top:5px;
    background-color:rgba(105, 118, 132, 255);
    }
    --------------------
    color:rgba(255, 255, 255, 140);
    --------------------

  • @zunairahmed2560
    @zunairahmed2560 2 года назад +3

    Amazing! 😲
    I didn't know you could do so much with PyQt so easily!
    Thanks for this video! 👍🙂

  • @apo0orva
    @apo0orva 3 года назад +2

    This video was amazing, will try this once 😊

  • @ismailgoda2159
    @ismailgoda2159 3 года назад +1

    انت عظيم , استمر
    اتابعك من مصر

  • @skopflores350
    @skopflores350 2 года назад

    incrible quedo increible, munchas gracias men me ayudara bastante en un proyecto de la escuela.

  • @programmed2code
    @programmed2code 3 года назад +3

    Buddy you are doing great, also try to make that button functional.

    • @SihinaCode
      @SihinaCode  3 года назад +2

      Thanks. Yes i did that. ruclips.net/video/PTBjXVixSv4/видео.html

  • @sandaruseneth4588
    @sandaruseneth4588 3 года назад

    Man....you is the best...try to do content with explanation ...

  • @yiwei-cheng
    @yiwei-cheng 3 года назад +1

    Excellent!
    Excuse me, how can we switch to another ui after login?

    • @SihinaCode
      @SihinaCode  3 года назад

      There are several methods to do this. But hiding is the one simple method.
      Check this. You can use this method.
      ruclips.net/video/XZ3jCz4H2FU/видео.html

    • @yiwei-cheng
      @yiwei-cheng 3 года назад +1

      @@SihinaCode thanks 🙏🙏🙏🙏

  • @adfinemrising
    @adfinemrising 2 года назад

    is this desktop app only? or can this be for android too?

  • @gazchao
    @gazchao 3 года назад +1

    Thanks. This is awesome. Will you be able to share these code, please?

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

    I tried to change the background image but i can't will you guide me to change

  • @nizukohattori3051
    @nizukohattori3051 2 года назад

    hello there , when i try to set a Drop Shadow to the main widget (Form) , i recive this error "UpdateLayeredWindowIndirect failed for ptDst=(775, 272), size=(370x535), dirty=(420x585 -15, -28) (The parameter is incorrect.)" ,, i only can set the effect on elemants inside the widgets which makes no border shadow out the widget as you did in video , the diff you apply it on QLabel and i wanna to Apply on Form(QWidget )
    besides the code is | self.setGraphicsEffect(QtWidgets.QGraphicsDropShadowEffect(blurRadius=25, xOffset=10, yOffset=-3, color=QtGui.QColor("Cyan")))

  • @codecracker8856
    @codecracker8856 3 года назад

    Is it required to have working knowledege of CSS for this?

    • @SihinaCode
      @SihinaCode  3 года назад

      If you know CSS. It is easy to learn qt stylings.

  • @Wabuh-Wabuh
    @Wabuh-Wabuh 3 года назад

    dude u are a BEAST!

  • @topratedvideos7670
    @topratedvideos7670 3 года назад +3

    Can you please Share your source code??

  • @jeromemarbebe3791
    @jeromemarbebe3791 3 года назад

    thankyou keep it up!

  • @herahadi
    @herahadi 2 года назад

    awesome

  • @elizabethcheruvathur
    @elizabethcheruvathur 3 года назад

    Hey sihinia, the placeholder text option isnt available on my widgets column, what should I do?!
    This tutorial had help me a lot, just am not able to figure this part out, could you help me our please:')

    • @SihinaCode
      @SihinaCode  3 года назад

      First, double check and if you do not find the option, then just insert this line into the python code.
      self.lineEdit.setPlaceholderText("Enter password")

  • @Ventria24s
    @Ventria24s 3 года назад

    can we move the frameless background with mouse?
    Tutorial Please

    • @SihinaCode
      @SihinaCode  3 года назад

      ruclips.net/video/sTi0p0olyMI/видео.html. You can do it like this.

  • @dadas8366
    @dadas8366 3 года назад

    I get libpng warning: iCCP: known incorrect sRGB profile, is this a problem?

    • @SihinaCode
      @SihinaCode  3 года назад

      You can ignore the warning. or if you want to fix an image you can find a way on the internet.

    • @dadas8366
      @dadas8366 3 года назад

      @@SihinaCode thanks bro, i already could fix it

  • @Okwach_Kich
    @Okwach_Kich 3 года назад

    could you please explain to me this error "setObjectName(self, str): first argument of unbound method must have type 'QObject'"

    • @SihinaCode
      @SihinaCode  3 года назад

      Can you send me a message. my page link: facebook.com/Sihinacode-103902435031155/

  • @charmypappitson6942
    @charmypappitson6942 2 года назад

    what is the music name in the background hhh

  • @marcbeckerton3898
    @marcbeckerton3898 4 месяца назад

    can you do some videos in english?

  • @himanshuranjan5364
    @himanshuranjan5364 3 года назад

    Please explain too, that will help

  • @SadiqAbubakarMuhammad-m2n
    @SadiqAbubakarMuhammad-m2n 8 месяцев назад +1

    This is so useless cause u are too fast and we are not learning

  • @المبرمجانورالبحراني

    Please Give my link your project

    • @SihinaCode
      @SihinaCode  3 года назад

      Actually, it is not available anywhere. If you need, just send me a message.
      facebook.com/Sihinacode-103902435031155/

  • @thomasheinzm.9094
    @thomasheinzm.9094 3 года назад

    Hi, this is good! (How can I contact you we need to talk)

    • @SihinaCode
      @SihinaCode  3 года назад

      you can contact me through my page.
      facebook.com/Sihinacode-103902435031155/