WeChatMsg/app/ImageBox/run.py
2023-01-23 09:47:40 +08:00

10 lines
159 B
Python

from ui import MainDemo
from config import *
if __name__ == '__main__':
app = QApplication(sys.argv)
box = MainDemo()
box.show()
app.exec_()