
Qt
GavinMoreYoung
Dream again small also not too small,can't not have too big again
展开
-
sdl2 - ImportError: DLL load failed: 找不到指定的模块。
pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew原创 2019-01-31 14:12:48 · 1836 阅读 · 0 评论 -
C11:Implementing Animation
Displaying a 2D graphical image Final Result How to do it?class MyForm(QDialog): def __init__(self): super().__init__() self.ui = Ui_Dialog() self.ui.setupUi(self)...原创 2019-02-06 02:28:22 · 195 阅读 · 0 评论 -
C10:Using Graphics
Displaying mouse coordinates Final ResultHow to do it?class MyForm(QDialog): def __init__(self): super().__init__() self.ui = Ui_Dialog() self.setMouseTracking(Tru...原创 2019-02-06 02:25:14 · 201 阅读 · 0 评论 -
C9:Database Handling
Creating a databaseFinal Result How to do it?class MyForm(QDialog): def __init__(self): super().__init__() self.ui = Ui_Dialog() self.ui.setupUi(self) self...原创 2019-02-06 02:13:39 · 197 阅读 · 0 评论 -
C8:Asynchronous Programming In Python
Updating progress bar using threadFinal ResultHow to do it?class MyForm(QDialog): def __init__(self): super().__init__() self.ui = Ui_Dialog() self.ui.setupUi(self...原创 2019-02-06 02:10:02 · 193 阅读 · 0 评论 -
QT Travel
Code Resource: https://github.com/MoreYoungGavin/QT_Travel.gitWhat is QT?QT is a cross-platform application development framework for desktop,embedded and mobile.What need install QT before?Yo...原创 2019-01-29 12:48:10 · 199 阅读 · 0 评论 -
C7:Network and Managing Large Documents
Create Small BrowserFinal ResultHow to do it?class MyForm(QDialog): def __init__(self): super().__init__() self.ui = Ui_Dialog() self.ui.setupUi(self) self...原创 2019-02-03 00:09:07 · 234 阅读 · 0 评论 -
C6:Layouts
Horizontal LayoutFinal ResultHow to do it?class Ui_Dialog(object): def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(296, 183) self.horizonta...原创 2019-02-02 18:00:52 · 206 阅读 · 0 评论 -
C5:Dialogs
Input DialogFinal ResultHow to do it?class MyForm(QDialog): def __init__(self): super().__init__() self.ui = Ui_Dialog() self.ui.setupUi(self) self.ui.push...原创 2019-02-02 17:58:04 · 284 阅读 · 0 评论 -
C4:OOP Concepts
Class in GUIFinal ResultHow to do it?class Student: name = "" code = "" def __init__(self,name,code): self.name = name self.code = code def getCode(self): ...原创 2019-02-02 05:13:14 · 175 阅读 · 0 评论 -
Take PyQt5Designer install to PyCharm
Recipe 1:Open Settings window and find External Tools in Tools option.Recipe 2:Click ‘+’ , add designer and pyuicProgram( designer path ): D:\Python\Lib\site-packages\PyQt5\Qt\bin\designe...原创 2019-02-02 03:35:02 · 201 阅读 · 0 评论 -
C3:Date and Time
LCD WidgetFinal ResultHow to do it?class MyForm(QDialog): def __init__(self): super().__init__() self.ui = Ui_Dialog() self.ui.setupUi(self) timer = QtCore...原创 2019-02-02 03:07:33 · 180 阅读 · 0 评论 -
C2:Event Handling
Signal/Slot EditorFinal ResultHow to do it?class MyForm(QDialog): def __init__(self): super().__init__() self.ui = Ui_Dialog() self.ui.setupUi(self) s...原创 2019-02-01 01:03:08 · 201 阅读 · 0 评论 -
C1:Create Qt Components
海南副教授陈晶优下台 ,shut down you are rubbish ,you need study.HelloWorld ApplicationFinal ResultHow to do it?class MyForm(QDialog): def __init__(self...原创 2019-01-30 02:31:55 · 250 阅读 · 0 评论