QDateTimeEdit 焦点到秒

QDateTimeEdit focus to seconds

我的对话框中有一个 QDateTimeEdit 小部件,以 mm:ss

的形式显示分钟和秒

当小部件通过单击 up/down 箭头获得焦点时,分钟数默认为 increased/decreased。有没有办法将默认焦点设置为秒数?

QDateTimeEdit中,有一个名为setCurrentSection()的方法。您所要做的就是将当前选择设置为秒,如下所示:

dateTimeEdit->setCurrentSection(QDateTimeEdit::SecondSection);