PyQt acess selectionChanged Content

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PyQt acess selectionChanged Content相关的知识,希望对你有一定的参考价值。

如何从选择中获取内容?我有一张桌子,我想通过其内容操纵所选项目。

该表与selectionModel连接,如下所示:

self.table.selectionModel().selectionChanged.connect(dosomething)

我在函数中得到两个QItemSelection,新的选择和旧的。但我不知道如何提取它。

答案

没关系,弄清楚。

要得到它我必须使用:

QItemSelection.index()[0].data().toPyObject()

我觉得这会更容易。如果有人知道更多的pythonic方式,请回复。

另一答案

我意识到这个问题很老了,但是当我在寻找如何做到这一点时,我通过Google找到了它。

总之,我相信你所追求的是方法selectedIndexes()

这是一个最小的工作示例:

import sys

from PyQt5.QtGui import QStandardItem, QStandardItemModel
from PyQt5.QtWidgets import QAbstractItemView, QApplication, QTableView

names = ["Adam", "Brian", "Carol", "David", "Emily"]

def selection_changed():
    selected_names = [names[idx.row()] for idx in table_view.selectedIndexes()]
    print("Selection changed:", selected_names)

app = QApplication(sys.argv)
table_view = QTableView()
model = QStandardItemModel()
table_view.setModel(model)

for name in names:
    item = QStandardItem(name)
    model.appendRow(item)

table_view.setSelectionMode(QAbstractItemView.ExtendedSelection)  # <- optional
selection_model = table_view.selectionModel()
selection_model.selectionChanged.connect(selection_changed)

table_view.show()
app.exec_()

以上是关于PyQt acess selectionChanged Content的主要内容,如果未能解决你的问题,请参考以下文章

JDBC-Data Acess Object

如何在 Acess 2010 中制作每个月的案例类型计数报告

vlan acess端口的设置

微信公众号获取acess_token并存储(php)

Java|Illegal Acess Exception错误解析

XAML 组合框 SelectionChanged 触发 OnLoad