Frage

hi guys im going a tools using a listwidget to list of objects to update some function. so the user select any no of item in list and perform a function.. once it done then that updated item should disable selection mode how to achieve this in PyQt

War es hilfreich?

Lösung

Query the selected items:

items = listWidget.selectedItems()

And set the flags for these selected items to Qt.NoItemFlags:

for item in items:
    item.setFlags(Qt.NoItemFlags)

This way you can disable the selection of the items.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top