Тёмный
No video :(

PyQt5 QtDesigner Checklist tutorial - Python GUI Tutorial for COMPLETE Beginners [QListWidget] 

Code First with Hala
Подписаться 37 тыс.
Просмотров 6 тыс.
50% 1

Checklist with Python, PyQt5, and QtDesigner. This is a beginner friendly tutorial. Use PyQt5 QListWidget to create an interactive interface and checklist.
PyQt5 playlist link: • PyQt5 Full App Tutoria...
In this video, you will:
- Learn how to use PyQt5 and QtDesigner
- Use Qt Designer UI files with Python code.
- Work with QListWidget and QListWidgetItem in PyQt5
- Style a PyQt5 UI
- Create a checklist using PyQt5 QListWidget
Source code: github.com/cod...
For more information:
Install and Setup PyQt5 and Qt Designer: • Install and Setup PyQt...
Loading UI Files with QtDesigner and Python: • QtDesigner tutorial fo...
Socials:
My email: code.first.io@gmail.com
Tiktok: / hala.codes
Timestamps:
00:00 Introduction and overview
01:19 Designing the UI and creating a QListWidget
06:07 Loading the UI file in Python
12:38 Creating the QListWidget items
16:38 Creating the checkboxes for the QListWidget items
19:19 Coding the "Toggle" Button
24:05 Styling and formatting the UI
*************
*Tags*
PyQt5
PyQt5 tutorial
PyQt5 module
PyQt5 Designer
QtDesigner
Qt GUI tutorial
PyQt5 modern GUI
PyQt5 QListWidget
PyQt5 Checklist
Python project
Python GUI project
PyQt5 project

Опубликовано:

 

15 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 25   
@user-367ehdy3
@user-367ehdy3 Год назад
I really like all of your tutorials, thank you very much 🙌
@rubixio8014
@rubixio8014 Год назад
Great tutorial, will love to see you do a database tutorial with Firebase, where we take inventory records in a pyqt desktop app and store them in Firebase database.
@codefirstwithhala
@codefirstwithhala Год назад
Great suggestion! I've been looking into making a video combining PyQt + Firebase. Will do one soon! Thanks for the comment
@kuahara
@kuahara Год назад
Fantastic video. Thank you for your time and contribution. This is very appreciated.
@younesammari6214
@younesammari6214 Год назад
I was looking for it Thanks for the tutorial
@codefirstwithhala
@codefirstwithhala Год назад
Happy to help!
@SHONNER
@SHONNER 11 месяцев назад
I used pip to install qtconsole. But the program still crashed even after pip updated my qtpy. I got the program to run by deleting the import qtconsole line and adding: from PyQt5 import QtCore
@rrcr4769
@rrcr4769 4 месяца назад
Hi, How do I develop the same things using a Qt Design Studio PyQt6 as I don't t=see the same interfaces as you show in your videos? Thank You, Raj
@luciansacota
@luciansacota 4 месяца назад
Hi! How can I save the list, so that checkboxes appear when opening (checked or unchecked)
@HabibUrRahman-mu8zf
@HabibUrRahman-mu8zf Год назад
How do you get which Item is checked? And perform the action
@carloseduardogomezlozano491
@carloseduardogomezlozano491 8 дней назад
Qt.ItemFlag.ItemIsUserCheckable, Qt.CheckState.Unchecked, Qt.CheckState.Unchecked. Si actualizan a PyQt6. Buen día
@ehilalkr
@ehilalkr 5 месяцев назад
how can we get main.ui?
@toonanimationstudio
@toonanimationstudio Год назад
Please any tutorials especially using flag I don't really understand it
@ezekiasmastaki4471
@ezekiasmastaki4471 Год назад
Hello Hala. Wonderfull PYQT tutorial. May I ask if it's possible to add custom object (like object from a Person class ) into a QlistWidget?
@timgoransson
@timgoransson Год назад
Hi Hala, Do you have any plans on a pyqt stylesheet tutorial? ways to style your UI. As a follow up question, how would you approach style "presets" for your UI? For example a dropdown where if you pick an option it changes the colors of all the buttons for example.
@codefirstwithhala
@codefirstwithhala Год назад
Hi Tim, it's coming soon for sure! Thank you for the comment
@warsisarjeelrahman3940
@warsisarjeelrahman3940 Год назад
Hello Hala. Love your PYQT videos. Could you make a video about the drag and drop feature in pyqt? There's not a lot of updated videos on that, so I'm sure it will help a lot of people.
@codefirstwithhala
@codefirstwithhala Год назад
Thanks for the suggestion, sure thing!
@youtube-joker
@youtube-joker Год назад
Hello Hala, I enjoy watching your videos and thank you for these great videos. However, it is a pity that you are still using PyQt5 and not the new version PyQt6. I tried to implement this checklist in PyQt6, but unfortunately without success. Could you make this code available in PyQt6, or make another video for the PyQt6 version? Kind regards from Germany
@codefirstwithhala
@codefirstwithhala Год назад
Hi there. There's not many major changes between PyQt5 and PyQt6. The most notable change is going from short names for enums and only using the long-form names. So, to get this code working with PyQt6, you'll have to replace QtCore.Qt.ItemIsUserCheckable with QtCore.Qt.ItemFlag.ItemIsUserCheckable. Replace QtCore.Qt.Checked with QtCore.Qt.CheckState.Checked. Replace QtCore.Qt.Unchecked with QtCore.Qt.CheckState.Unchecked. You should be good to go!
@youtube-joker
@youtube-joker Год назад
@@codefirstwithhala Thanks for the quick reply: It works so far, but there seems to be some kind of problem with the "todo_listWidget". In PyCharm it is marked as an error. When I start the program and click "toggleall_button" the program crashes.
@youtube-joker
@youtube-joker Год назад
I have now solved it, it is now running with PyQt6. But I have another question. How can I change the color of the items and how can I make it strikethrough (setStrikeOut(True)?
@CarlosRodriguez-xk9ot
@CarlosRodriguez-xk9ot Год назад
better organization needed
@codefirstwithhala
@codefirstwithhala Год назад
Hi Carlos, can you clarify what you mean?
Далее
아이스크림으로 진짜 친구 구별하는법
00:17
QListWidget - Python Pyqt5 Qt Designer
14:35
Просмотров 11 тыс.
Modern Graphical User Interfaces in Python
11:12
Просмотров 1,5 млн
ToDo List GUI App - PyQt5 GUI Thursdays #13
15:58
Просмотров 23 тыс.
PyQt5 Splash Screen tutorial [PyQt5 GUI tutorial]
9:13