-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHomePage.py
More file actions
24 lines (20 loc) · 745 Bytes
/
Copy pathHomePage.py
File metadata and controls
24 lines (20 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from PyQt5.QtWidgets import QMainWindow
from PyQt5.uic import loadUi
class HPWindow(QMainWindow):
"""Created by Kasra Hosseini
Github : https://github.com/KasraCode
gmail : kasracodec@gmail.com
Class to showing home page
Button names :
Windows Tracker -> btn_tracker
CPU Analyze -> btn_cpu
Hard Disk Tracker -> btn_hardDisk
System Info -> btn_sysInfo
Settings -> btn_settings
About Us -> btn_aboutUs
Labels :
"Home Page - Select" -> lbl_homeTitle
"""
def __init__(self):
super(HPWindow,self).__init__()
loadUi("UiFiles/MainWindow.ui",self)