diff options
author | Eddy Pedroni <eddy@0xf7.com> | 2020-11-01 19:47:29 +0100 |
---|---|---|
committer | Eddy Pedroni <eddy@0xf7.com> | 2020-11-01 19:47:29 +0100 |
commit | 6a74b090b13a9e1ff37338332627eb5f16ed7d40 (patch) | |
tree | 7d1fe56906effaa9655855902da436e71a569d27 /mediaplayer/test.py |
Initial commit
Diffstat (limited to 'mediaplayer/test.py')
-rw-r--r-- | mediaplayer/test.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mediaplayer/test.py b/mediaplayer/test.py new file mode 100644 index 0000000..afdd625 --- /dev/null +++ b/mediaplayer/test.py @@ -0,0 +1,15 @@ +import sys +from PySide2 import QtWidgets +from MainWindow2 import Ui_MainWindow + +class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow): + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self.setupUi(self) + + +app = QtWidgets.QApplication(sys.argv) +window = MainWindow() +window.show() +app.exec_()
\ No newline at end of file |