Python 发表于 2021-11-17 10:37:42

Qt Design - Form

本帖最后由 Python 于 2021-11-17 10:38 编辑

Qt Design - Form

from PyQt5.QtWidgets import QWidget
import Ui_Form
class mainGUI(QWidget, Ui_Form):
    def __init__(self):      
      super(mainGUI, self).__init__()      
      self.setupUi(self)

页: [1]
查看完整版本: Qt Design - Form