C++ (Qt)void myDialog::keyPressEvent(QKeyEvent *e){ if (e->key() == Qt::Key_Escape) { e->ignore(); return; } QDialog::keyPressEvent(e);}