当前位置: 首页 > 工具软件 > PushButton > 使用案例 >

QT pushButton焦点及热键设置

澹台镜
2023-12-01

ui.pushButton->setFocus(); //设置默认焦点

ui.pushButton->setShortcut( QKeySequence::InsertParagraphSeparator ); //设置快捷键为键盘的“回车”键

ui.pushButton->setShortcut(Qt::Key_Enter); //设置快捷键为enter键

ui.pushButton->setShortcut(Qt::Key_Return); //设置快捷键为小键盘上的enter键

或者

ui.pushButton->setFocus(); //设置默认焦点

ui.pushButton->setDefault(); //设置默认按钮,设置了这个属性,当用户按下回车的时候,就会按下该按钮

当焦点在ui.pushButton这个按钮上的时候,按下回车,该按钮就发射clicked()信号。

 类似资料: