设置具有不同背景颜色的区分工具提示 (Java)
我有一个带有两组工具提示的程序:
- 更深入地描述 JLabel 的普通工具
- 提示 表示错误的工具提示 - 这些应该具有红色背景颜色。
我知道如何使用 UIManager 设置工具提示的背景颜色,但这会更改所有工具提示的背景,这是我不想做的。
I have a program with two sets of tooltips:
- Normal Tooltips that describe a JLabel in more depth
- Tooltips that signify errors - these should have a red background color.
I know how to set the background color of a tooltip by using UIManager, but that changes the background of all of the tooltips, something that I don't want to do.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 Swing 组件中使用 HTML,包括工具提示。
附录:这里有一个很好的例子。
You can Use HTML in Swing Components, including tool tips.
Addendum: There's a nice example here.
您可以添加一个自定义鼠标侦听器来显示其他工具提示。
然而,这对用户来说听起来有点令人困惑。
You could add a custom mouse listener that would display the other tool-tip.
However, this sounds a little confusing to the user.