3

通过 QApplication::sendEvent() 向 QListView 发送事件时,我的应用程序崩溃。

void MyQWidget::keyPressEvent(QKeyEvent * event)
{
    if (event->key() == Qt::Key_Up || event->key() == Qt::Key_Down) {
        QApplication::sendEvent(this->view,event);  // this.view being the QListView
    }

    QWidget::keyPressEvent(event);
}

有人知道原因吗?

4

0 回答 0