PyQt(Python+Qt)学习随笔:QTableWidgetItem项whatsThis、toolTip、statusTip提示信息访问方法
QTableWidget表格部件的QTableWidgetItem项提示信息包括工具栏提示、状态栏提示和whatsThis提示,它们的访问方法如下:
- 通过toolTip()、setToolTip( str toolTip)来操作toolTip
- 通过statusTip()、setStatusTip(str statusTip)来操作statusTip
- 通过whatsThis()、setWhatsThis(str whatsThis)来操作whatsThis
关于这三个提示信息的区别请参考《PyQt(Python+Qt)学习随笔:Qt Designer中部件的toolTip、toolTipDuration、statusTip、whatsThis属性》。
示例代码:
for row in range(3):
for col in range(3):
item = myTableItem(f"({row},{col})")
self.tableWidget.setItem(row,col,item)
item.setToolTip(f"{row}行{col}列工具栏提示")
item.setStatusTip(f"{row}行{col}列状态栏提示")
item.setWhatsThis(f"{row}行{col}列帮助提示")