def setupUi(self, Form):
Form.setObjectName("Form")
self.verticalLayout = QtWidgets.QVBoxLayout(Form)
self.verticalLayout.setObjectName("verticalLayout")
self.groupbox = QtWidgets.QGroupBox(Form)
self.groupbox.setObjectName("groupbox")
self.formLayout_2 = QtWidgets.QFormLayout(self.groupbox)
self.formLayout_2.setFieldGrowthPolicy(QtWidgets.QFormLayout.AllNonFixedFieldsGrow)
self.formLayout_2.setObjectName("formLayout_2")
self.orderLabel = QtWidgets.QLabel(self.groupbox)
self.orderLabel.setObjectName("orderLabel")
self.formLayout_2.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.orderLabel)
self.orderSpinBox = QtWidgets.QSpinBox(self.groupbox)
self.orderSpinBox.setObjectName("orderSpinBox")
self.formLayout_2.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.orderSpinBox)
self.numOfStandardDeviationsLabel = QtWidgets.QLabel(self.groupbox)
self.numOfStandardDeviationsLabel.setObjectName("numOfStandardDeviationsLabel")
self.formLayout_2.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.numOfStandardDeviationsLabel)
self.numOfStandardDeviationsSpinBox = QtWidgets.QSpinBox(self.groupbox)
self.numOfStandardDeviationsSpinBox.setObjectName("numOfStandardDeviationsSpinBox")
self.formLayout_2.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.numOfStandardDeviationsSpinBox)
self.maxNumOfIterationsLabel = QtWidgets.QLabel(self.groupbox)
self.maxNumOfIterationsLabel.setObjectName("maxNumOfIterationsLabel")
self.formLayout_2.setWidget(2, QtWidgets.QFormLayout.LabelRole, self.maxNumOfIterationsLabel)
self.maxNumOfIterationsSpinBox = QtWidgets.QSpinBox(self.groupbox)
self.maxNumOfIterationsSpinBox.setObjectName("maxNumOfIterationsSpinBox")
self.formLayout_2.setWidget(2, QtWidgets.QFormLayout.FieldRole, self.maxNumOfIterationsSpinBox)
self.verticalLayout.addWidget(self.groupbox)
self.retranslateUi(Form)
QtCore.QMetaObject.connectSlotsByName(Form)
Polyfit.py 文件源码
python
阅读 22
收藏 0
点赞 0
评论 0
评论列表
文章目录