想要使用以下代码为 QTreeWidget 项触发“itemClicked”事件。
connect(aTreeWidget,SIGNAL(itemClicked(QTreeWidgetItem*,int)),this,SLOT(CallM(QTreeWidgetItem* item, int)));
但是没有调用CallM插槽,不知道这里有什么问题!?没有语法或构建错误,我使用的是 Qt 4.7.1/Win 7。
想要使用以下代码为 QTreeWidget 项触发“itemClicked”事件。
connect(aTreeWidget,SIGNAL(itemClicked(QTreeWidgetItem*,int)),this,SLOT(CallM(QTreeWidgetItem* item, int)));
但是没有调用CallM插槽,不知道这里有什么问题!?没有语法或构建错误,我使用的是 Qt 4.7.1/Win 7。