JButton鼠标移动监听器小信息框架(工具提示)

时间:2017-06-13 08:14:46

标签: java swing tooltip

JButton处于有效状态时,我需要向我的mouseMotionListener添加一个这样的框:

enter image description here

但是,我不知道这个盒子的名字在Java Swing中是什么。

有谁知道声明名称是什么?

2 个答案:

答案 0 :(得分:2)

你应该指的是tooltip

答案 1 :(得分:2)

假设您的JButton名称是'按钮'所以 button.setToolTipText("Your text here");会做到这一点。