将鼠标悬停在JButton上并显示一条消息

将鼠标悬停在JButton上并显示一条消息,第1张

将鼠标悬停在JButton上并显示一条消息

为什么不使用现有的工具提示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>");


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5562193.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存