You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
446 B
Python

from DcsUi.InitProject import Ui_InitProject
from DcsUi.LogWindow import LogWindow
from PyQt5 import QtWidgets
from static.Stylesheets.ImportQss import load_stylesheet_pyqt5
import sys
if __name__ == '__main__':
sys.excepthook = LogWindow.errorLog
app = QtWidgets.QApplication(sys.argv)
mainWindow = Ui_InitProject()
app.setStyleSheet(load_stylesheet_pyqt5(style="style_Classic"))
mainWindow.show()
sys.exit(app.exec_())