This repository has been archived on 2022-12-22. You can view files and clone it, but cannot push or open issues/pull-requests.
Concorde-IDE/gui_handler.py

17 lines
437 B
Python

from PySide6 import QtCore, QtWidgets
import sys
class Window(QtWidgets.QWidget):
def __init__(self):
super().__init__()
self.text = QtWidgets.QLabel("Hello World", alignment=QtCore.Qt.AlignCenter)
self.layout = QtWidgets.QVBoxLayout(self)
self.layout.addWidget(self.text)
app = QtWidgets.QApplication([])
main_window = Window()
main_window.resize(800, 600)
main_window.show()
sys.exit(app.exec())