14

无论如何在qtablewidget中添加一个按钮?但是单元格内的日期仍然必须显示,例如,如果用户双击一个单元格,我可以像按钮一样发送信号吗?谢谢!

编辑项():

def editItem(self,clicked):
    if clicked.row() == 0:
        #go to tab1
    if clicked.row() == 1:
        #go to tab1
    if clicked.row() == 2:
        #go to tab1
    if clicked.row() == 3:
        #go to tab1

表触发器:

self.table1.itemDoubleClicked.connect(self.editItem)
4

2 回答 2

28

您有几个问题汇总在一起......简短的回答,是的,您可以向 QTableWidget 添加一个按钮 - 您可以通过调用 setCellWidget 将任何小部件添加到表格小部件:

# initialize a table somehow
table = QTableWidget(parent)
table.setRowCount(1)
table.setColumnCount(1)

# create an cell widget
btn = QPushButton(table)
btn.setText('12/1/12')
table.setCellWidget(0, 0, btn)

但这听起来不像你真正想要的。

听起来您想对用户双击您的一个单元格做出反应,就好像他们单击了一个按钮,大概是为了打开一个对话框或编辑器或其他东西。

如果是这种情况,您真正需要做的就是从 QTableWidget 连接到 itemDoubleClicked 信号,如下所示:

def editItem(item):
    print 'editing', item.text()    

# initialize a table widget somehow
table = QTableWidget(parent)
table.setRowCount(1)
table.setColumnCount(1)

# create an item
item = QTableWidgetItem('12/1/12')
table.setItem(0, 0, item)

# if you don't want to allow in-table editing, either disable the table like:
table.setEditTriggers( QTableWidget.NoEditTriggers )

# or specifically for this item
item.setFlags( item.flags() ^ Qt.ItemIsEditable)

# create a connection to the double click event
table.itemDoubleClicked.connect(editItem)
于 2012-08-17T17:00:48.100 回答
2

在 PyQt4 中将按钮添加到 qtablewidget :

btn= QtGui.QPushButton('Hello')
qtable_name.setCellWidget(0,0, btn) # qtable_name is your qtablewidget name
于 2019-08-01T15:18:28.647 回答