如何使用 Java 为 NetBeans IDE 制作可停靠插件?
我用 Java 创建了一个模拟时钟。但我想让它能够在 NetBeans IDE 中停靠(如屏幕截图所示)。
- 就像左侧导航器、文件、底部任务被隐藏一样,一旦我按下它,它就会显示在左侧或底部。
对此有任何帮助吗,我如何告诉我的 NetBeans 插件可以像可停靠一样工作?使其工作后,我想将其发布到社区插件。
I have created one analogue clock with Java. But i want to make it dock-able in NetBeans IDE (like shown in the screen shot).
- like the left side navigator, files, bottom tasks are hidden, once i press it it shows in left or bottom
Any help on this, how can i tell my NetBeans plugin to act like dock-able? After making it working i would like to publish it to the community plugin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NetBeans 富客户端平台,这并不太复杂。按照本教程操作 - http://platform.netbeans.org/tutorials/nbm-paintapp .html#impMod
基本上,您将使用向导创建一个 ClockTopComponent。 TopComponents 自动获得漂亮的窗口免费功能,例如停靠、隐藏、平铺等。
有关 TopComponent 的常见问题解答
This is not too complicated using the NetBeans Rich Client Platform. Follow this tutorial - http://platform.netbeans.org/tutorials/nbm-paintapp.html#impMod
Basically, you'll create a ClockTopComponent using the wizard. TopComponents automatically get nice windowing features for free, like docking, hiding, tiling, etc.
FAQs about TopComponent