第一步 from untitled import Ui_Form
untitled是ui转化成py的文件名;Ui_Form是转换后的类名
第二步 把Ui_Form做为工程的父类 class Demo(QWidget,Ui_Form):
第三步 加入 self.setupUi(self)