Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在下面的链接中实现图片中显示的相同行为。当光标在按钮上停留几秒钟时,可以看到一些描述。我如何在 Qt4 中实现它?谢谢大家!
QPushButton有void setToolTip(const QString &)方法,正是这样做的。如果您对它的效果不满意,您可以通过重新实现onMouseEnter事件来绘制自己的工具提示小部件(带有 Qt::Tooltip 标志的 QWidget)和子类 QPushbutton。希望有帮助。
QPushButton
void setToolTip(const QString &)
onMouseEnter