新增程序翻译

This commit is contained in:
2022-08-22 17:30:42 +08:00
parent 9254aa0cdf
commit daa04ec6fd
13 changed files with 902 additions and 434 deletions

View File

@@ -1,18 +0,0 @@
# 本来是用C++写的但在非deepin/UOS编译/运行就是下载不了https文件只能用python重写
import sys
import PyQt5.QtWidgets as QtWidgets
import mainwindowui
# 继承至界面文件的主窗口类
class MyMainWindow(mainwindowui.Ui_MainWindow):
def __init__(self, parent=None):
#pass
super(MyMainWindow, self).__init__(parent)
#self.setupUi(self)
if __name__ == "__main__":
app = QtWidgets.QApplication(sys.argv)
window = MyMainWindow()
window.show()
app.exec_()