26 lines
654 B
Python
26 lines
654 B
Python
# This Python file uses the following encoding: utf-8
|
|
|
|
import sys
|
|
from PySide6.QtWidgets import QApplication
|
|
from PySide6.QtCore import QFile, QIODevice
|
|
from PySide6.QtUiTools import QUiLoader
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = QApplication(sys.argv)
|
|
|
|
ui_file_name = "main.ui"
|
|
ui_file = QFile(ui_file_name)
|
|
if not ui_file.open(QIODevice.ReadOnly):
|
|
print(f"Cannot open {ui_file_name}: {ui_file.errorString()}")
|
|
sys.exit(-1)
|
|
loader = QUiLoader()
|
|
window = loader.load(ui_file)
|
|
ui_file.close()
|
|
if not window:
|
|
print(loader.errorString())
|
|
sys.exit(-1)
|
|
window.show()
|
|
|
|
sys.exit(app.exec())
|