DigitApp.py 277 B

12345678910
  1. from PyQt5.QtWidgets import QApplication
  2. from UI.DigitFrom import DigitForm
  3. import sys
  4. class DigitApp(QApplication):
  5. def __init__(self):
  6. super(DigitApp, self).__init__(sys.argv)
  7. # 创建应用主窗体
  8. self.dlg = DigitForm()
  9. self.dlg.show()