You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
351 B
21 lines
351 B
5 months ago
|
from MainWidget import MainWidget
|
||
|
from PyQt5.QtWidgets import QApplication
|
||
|
import sys
|
||
|
|
||
|
|
||
|
def main():
|
||
|
app = QApplication(sys.argv)
|
||
|
|
||
|
# 新建主界面
|
||
|
mainWidget = MainWidget()
|
||
|
|
||
|
# 显示主界面
|
||
|
mainWidget.show()
|
||
|
|
||
|
# 消息循环
|
||
|
exit(app.exec_())
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
print("Start")
|
||
|
main()
|