Basic structure for the QT application with empty window

This commit is contained in:
2026-07-26 12:21:24 +02:00
parent e667a14459
commit 38b8ee34ff
23 changed files with 342 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
from PySide6.QtWidgets import QMainWindow
from bedit_gui.ui.generated.ui_main_window import Ui_MainWindow
class MainWindow(QMainWindow):
def __init__(self) -> None:
super().__init__()
self.ui = Ui_MainWindow()
self.ui.setupUi(self)