在 netbeans 中生成的代码预览。怎样才能做出这样的效果呢?
前段时间在netbeans IDE中看到了一个不错的效果。当我的光标停在生成的代码
文本上(例如在生成的JFrame
中)时,某种提示(生成的代码的预览)可见(具有灰色背景)。
我搜索了一下,但没有发现任何东西。 我的问题是该组件是什么以及它是如何工作的?我怀疑这是特定的 TextPane/EditorPane 或类似的东西。
编辑:
是的,这是一个 JToolTip,这里有一些额外信息:
http://www.coderanch.com/t/346510/GUI/java/Customizing-JToolTip
图书页数:85
Some time ago I saw a nice effect in netbeans IDE. When my cursor stops on the Generated Code
text (e.g. in generated JFrame
), some kind of hint (preview of generated code) is visible (has grey background).
I searched it and I didn't found anything. My question is what is that component and how does it works? I suspect that is specific TextPane/EditorPane or something like that.
EDIT:
Yea, this is a JToolTip, and here is some extra info:
http://www.coderanch.com/t/346510/GUI/java/Customizing-JToolTip
Book page: 85
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一个是 JToolTip。第二个似乎也是一个
JToolTip
,但具有格式化的代码和不同的背景颜色,至少从您链接到的屏幕截图来看是这样。The first one is a JToolTip. The second one seems to be a
JToolTip
as well, but with formatted code and a different background color, at least from the screenshot you have linked to.