>>13179677Here's a GUI Blueprint that can be expanded. This is all written, or googled with PYTHON.
#This program is designed and structured by Matthew A Meador @ 2021
# This imports the PyQt5 tools
from PyQt5 import QtWidgets
from PyQt5.QtWidgets import QApplication, QMainWindow
from PyQt5 import QtCore, QtGui
import sys
# this shows the main large window. Size, name, and spawn location can be changed here
class Window(QMainWindow):
def __init__(self):
super().__init__()
self.setGeometry(200, 200, 1680, 800)
self.setWindowTitle("Virtual IT Lab")
self.show()
#This is the top navigation buttons
mainMenu = self.menuBar()
fileMenu = mainMenu.addMenu('File')
editMenu = mainMenu.addMenu('Edit')
viewMenu = mainMenu.addMenu('View')
searchMenu = mainMenu.addMenu('Search')
toolsMenu = mainMenu.addMenu('Tools')
helpMenu = mainMenu.addMenu('Help')
app = QApplication(sys.argv)
window = Window()
sys.exit(app.exec_())