4

我想将鼠标悬停在我的 GUI(地图)上的多个 JButton 上并显示该位置的名称,例如曼彻斯特和伦敦。我的代码适用于一个按钮,但它不适用于一个以上的按钮,并out为所有按钮位置打印最后一条消息(因为我有 10 个按钮)。

如果button1为真,则通过我的paintComponent()方法在指定区域的 GUI 上绘制文本。

我该如何解决这个问题?

button1.addMouseMotionListener(this);
button2.addMouseMotionListener(this);
public void mouseMoved(MouseEvent arg0)
{
    if(button1.contains(arg0.getPoint()))
    {
        button1  = true;
        out = "test 1";
        repaint();
    }

    if(!button1.contains(arg0.getPoint()))
    {
        b1 = false;
        out = " ";
        repaint();
    }//same for all 10 buttons but change variables
}
4

3 回答 3

13

为什么不使用已经存在的工具提示 API?

button.setTooltip("Manchester");

您甚至可以使用 HTML 文本来生成格式化的结果。

button.setTooltip("<html>Manchester<br>53.4800° N, 2.2400° W</html>");

如果图像被嵌入,您甚至可以提供图像......

button.setTooltip("<html><img src=" + getClass().getResource("/someimage") + "/>Manchester<br>53.4800° N, 2.2400° W</html>");
于 2013-02-20T20:23:28.590 回答
3
  • 请勿使用MouseListenerMosueMotionListenerfrom JButton,此方法在 中正确实现JButtons API

  • 没有理由,我找不到repaint()用于这份工作的理由

  • 另一种方法是添加ChangeListenerJButton派生的相关事件并从中获取相关事件ButtonModel

  • 为了获得更好的帮助,请尽快发布SSCCE,简短,可运行,可编译,只需JFrame一个JButton

于 2013-02-20T20:15:44.217 回答
3

那么这个答案对于 JDK 8 用户来说是很酷的,所以试试看:

对于常规文本

buttonyoumade.setToolTipText("Text you choose");

对于 html 使用

anotherbuttonyoumade.setToolTipText("<html> any valid html code </html>");
于 2018-04-10T18:07:44.457 回答