Skip to content
Snippets Groups Projects
Commit 16ce6540 authored by Michael Mutote's avatar Michael Mutote
Browse files

22202956 GUI 90% on FIrst Commit

parent c1ed5628
No related branches found
No related tags found
No related merge requests found
...@@ -6,14 +6,14 @@ from PyQt6.QtWidgets import (QApplication, QMainWindow, QWidget, ...@@ -6,14 +6,14 @@ from PyQt6.QtWidgets import (QApplication, QMainWindow, QWidget,
QVBoxLayout, QHBoxLayout, QGridLayout, QVBoxLayout, QHBoxLayout, QGridLayout,
QLabel, QPushButton, QSlider, QDateTimeEdit, QLabel, QPushButton, QSlider, QDateTimeEdit,
QLineEdit, QComboBox) QLineEdit, QComboBox)
from PyQt6.QtGui import QPalette, QColor from PyQt6.QtGui import QPalette, QColor, QIcon
class MainWindow(QMainWindow): class MainWindow(QMainWindow):
def __init__(self): def __init__(self):
super().__init__() super().__init__()
self.setWindowIcon(QIcon("icon.ico"))
self.setMinimumSize(720, 640) self.setMinimumSize(720, 640)
# Create a central widget # Create a central widget
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment