QPushButton 响应回车 设置默认按钮

1、
ui.pushButton->setFocus();//设置默认焦点
ui.pushButton->setShortcut(QKeySequence::InsertParagraphSeparator);//设置快捷键为键盘的“回车”键
ui.pushButton->setShortcut(Qt::Kyt_Enter);//设置快捷键为enter键
ui.pushButton->setShortcut(Qt::Kyt_Return);//设置快捷为小键盘上的enter键

2、
ui.pushButton->setFocus();//设置默认焦点
ui.pushButton->setDefault(true);//设置默认按钮,设置这个属性,当用户按下回车的时候,就会按下该按钮
当焦点在ui.pushButton 这个按钮上的时候,按下回车,该按钮就发射clicked()信号

3、
QShorcut *key = new QShortcut(QKeySequence(Qt::Key_Return),this);//创建一快捷键“Key_Return”键
connect(key,SIGNAL(activated()),this,SLOT(槽函数));//连接到指定的槽函数

4、
void MainWindow::KeyPressEvent(QKeyEvent *event)
{
switch(event->key())
{
case Qt::Key_Return:
要执行的槽函数();
break;
default:
break;
}
}

你可能感兴趣的:(QT学习之路)