如何在 JPanel 及其子项上设置工具提示?
我有一个包含 JButton 和其他一些东西的 JPanel,我希望整个面板都有一个工具提示。当我在 JPanel 上调用 setToolTipText 时,工具提示仅出现在 JPanel 内的空白区域中。
有没有办法在 JPanel 上设置工具提示,以便它适用于 JPanel 及其子项,或者我是否也只能在所有子项上调用 setToolTipText ?
I have a JPanel containing JButtons and a few other things, and I want the entire panel to have a tool-tip. When I call setToolTipText on the JPanel, the tool-tip only appears in empty spaces within the JPanel.
Is there a way to set a tool-tip on the JPanel such that it applies to the JPanel and its children, or am I stuck with calling setToolTipText on all the children as well?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建递归方法:
完整示例:
Create a recursive method:
Full example: