Basic structure for the QT application with empty window
This commit is contained in:
11
src/bedit_gui/views/main_window.py
Normal file
11
src/bedit_gui/views/main_window.py
Normal 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)
|
||||
Reference in New Issue
Block a user