我在寻求更多的帮助。我有一个使用pyqt5和qtdesigner创建的python gui。它由一个组合框、两个标签、两个行编辑框和一个按钮组成。组合框由从sql表中提取的数据组成。
[combo box]
label 1
label 2
LineEdit 1
LineEdit 2
[SUBMIT]
当您在组合框中选择某个内容时,它将根据sql表中提供的信息填充标签1和2。
下面是我的组合框函数:
def cbSelected(self, text):
cbIndex = self.cbNum.currentIndex()
selectedCB = listofItems[cbIndex]
self.Label1.setText(selectedCB.getPart())
self.Label2.setText(str(selectedCB.getQTY()))
我需要弄清楚如何提取用户输入以及标签“值”。
例如,用户选择combobox选项2,它表示label1“pizza”,label2“extra cheese”。lineedit1 input=name,lineedit2 input=delivery。
单击“提交”,它将打印组合框值、label1、label2、userinput1、userinput2。
一旦我看到它的工作原理,我希望它:
单击submit,将其插入表组合框value、label1、label2、userinput1、userinput2。
再次感谢你们的帮助,这对我的学习是无价的!
暂无答案!
目前还没有任何答案,快来回答吧!