如何使用pyqt4在行编辑(Qty)中删除点符号

时间:2019-02-09 04:30:04

标签: python-2.7 pyqt4

在我的程序中,我使用表格小部件创建了一张表格。当我在数量列的每一行中插入一行点符号时,我将数量列作为行编辑。帮助我如何删除数量列中的点符号。

下面是我的示例代码:

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)

enter image description here

0 个答案:

没有答案