在我的程序中,我使用表格小部件创建了一张表格。当我在数量列的每一行中插入一行点符号时,我将数量列作为行编辑。帮助我如何删除数量列中的点符号。
下面是我的示例代码:
self.quantybutton = QtGui.QLineEdit()
self.quantybutton.setFont(QtGui.QFont("normal",15, QtGui.QFont.Bold))
pushBtnList.append(self.quantybutton)
self.quantybutton.textChanged.connect(partial(self.quantity,index))
self.table.setCellWidget(self.table.rowCount()-1, 2, self.quantybutton)