当鼠标悬停在按钮上时,我需要显示“帮助文本”,我用谷歌搜索并尝试了一些代码但徒劳无功。
任何人都可以纠正我吗?
if (event->type() == QEvent::Enter)
{
if (obj == q1)
{
iarm->printStatus("hi"); // For debugging
QAction *newAct = new QAction(tr("&New"), this);
newAct->setShortcut(tr("Ctrl+N"));
newAct->setStatusTip(tr("Create a new file"));
newAct->setWhatsThis(tr("Click this option to create a new file."));
}
}