How to Disable and Enable selection for a item in QListWideget using Python

StackOverflow https://stackoverflow.com/questions/23124654

  •  05-07-2023
  •  | 
  •  

문제

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

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top