我正在使用 Qt-designer 和 PyQt。我设置了一个带有一些按钮和 QListWidget 的窗口。
我想获取 QListWidget 的点击项。例如,我在列表中有 4 个项目,我单击第一个项目应该将其发送到另一个函数。
我读了一些例子,但他们总是使用类和“自我”。由于我是一个完全的新手,我想从简单的开始,并在没有课程的情况下设置所有内容。
def show_item(item):
print (item)
mainscreen.connect(mainscreen.myList, SIGNAL("itemClicked(QListWidgetItem*)"),QListWidgetItem, showItem(QListWidgetItem))
我并不真正理解这些错误,因为我认为所有要求都已满足。
TypeError: arguments did not match any overloaded call:
QObject.connect(QObject, SIGNAL(), QObject, SLOT(), Qt.ConnectionType=Qt.AutoConnection): argument 3 has unexpected type 'PyQt4.QtCore.pyqtWrapperType'
QObject.connect(QObject, SIGNAL(), callable, Qt.ConnectionType=Qt.AutoConnection): argument 4 has unexpected type 'str'
QObject.connect(QObject, SIGNAL(), SLOT(), Qt.ConnectionType=Qt.AutoConnection): argument 3 has unexpected type 'PyQt4.QtCore.pyqtWrapperType'
编辑:代码示例
import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.uic import
def show_item(item):
print (item)
for x in range(4):
mainscreen.mylist_sorted.addItem(x)
app = QApplication(sys.argv)
mainscreen = loadUi("mainscreen.ui")
mainscreen.connect(mainscreen.mylist_sorted, SIGNAL("itemClicked(QListWidgetItem*)"),QListWidgetItem, (showItem(QListWidgetItem)))
mainscreen.show()
sys.exit(app.exec_())
mainscreen.ui 文件
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>mainscreen</class>
<widget class="QMainWindow" name="mainscreen">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>MainWindow</string>
</property>
<widget class="QWidget" name="centralwidget">
<widget class="QListWidget" name="mylist_sorted">
<property name="geometry">
<rect>
<x>30</x>
<y>160</y>
<width>256</width>
<height>192</height>
</rect>
</property>
</widget>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>25</height>
</rect>
</property>
</widget>
<widget class="QStatusBar" name="statusbar"/>
</widget>
<resources/>
<connections/>
</ui>