13 lines
322 B
Python
13 lines
322 B
Python
import os.path
|
|
from PyQt5 import QtCore, QtGui, QtWidgets, uic
|
|
import utils
|
|
|
|
|
|
class MainWindow(QtWidgets.QMainWindow):
|
|
def __init__(self, parent=None):
|
|
super().__init__(parent)
|
|
uic.loadUi(utils.get_file("ui/mainwindow.ui"), self)
|
|
|
|
def showEvent(self, event: QtGui.QShowEvent):
|
|
pass
|