按数字对 QListWidget 进行排序
Sorting a QListWidget by numbers
我有一个 QListWidget
包含这些项目:
1
10
100
11
110
111
12
我想按数字对列表中的项目进行排序:
1
10
11
12
100
110
111
有什么想法吗?
默认情况下 QListWidget
将根据文本对元素进行排序,如果您想根据与文本关联的数值进行排序,您必须创建自定义 QListWidgetItem
并覆盖方法 __lt__
:
import sys
from PyQt4.QtGui import QApplication, QListWidget, QListWidgetItem
from PyQt4.QtCore import Qt
class ListWidgetItem(QListWidgetItem):
def __lt__(self, other):
try:
return float(self.text()) < float(other.text())
except Exception:
return QListWidgetItem.__lt__(self, other)
if __name__ == '__main__':
app = QApplication(sys.argv)
w = QListWidget()
for i in [1, 10, 100, 11, 110, 111, 12]:
w.addItem(ListWidgetItem(str(i)))
w.sortItems()
w.show()
sys.exit(app.exec_())
我有一个 QListWidget
包含这些项目:
1
10
100
11
110
111
12
我想按数字对列表中的项目进行排序:
1
10
11
12
100
110
111
有什么想法吗?
默认情况下 QListWidget
将根据文本对元素进行排序,如果您想根据与文本关联的数值进行排序,您必须创建自定义 QListWidgetItem
并覆盖方法 __lt__
:
import sys
from PyQt4.QtGui import QApplication, QListWidget, QListWidgetItem
from PyQt4.QtCore import Qt
class ListWidgetItem(QListWidgetItem):
def __lt__(self, other):
try:
return float(self.text()) < float(other.text())
except Exception:
return QListWidgetItem.__lt__(self, other)
if __name__ == '__main__':
app = QApplication(sys.argv)
w = QListWidget()
for i in [1, 10, 100, 11, 110, 111, 12]:
w.addItem(ListWidgetItem(str(i)))
w.sortItems()
w.show()
sys.exit(app.exec_())