JAVA MDI 应用程序
我想使用 java 开发要在桌面上运行的 MDI 应用程序,下载 jar 文件(小应用程序),并且每个 jar 在主 MDI 应用程序的单独面板中打开 这可能吗? 感谢您的提前
I want to develop MDI application with java to be run on desktop that download jar files (small applications) and each jar is opened in separated panel in the main MDI applications
Is this possible?
Thanks for advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这可以在 Swing 中使用 JInternalFrame 来完成。示例: http://www.developerfusion.com/article/3798 /programming-with-swing/5/
Yes this can be done in Swing by using JInternalFrame. An example: http://www.developerfusion.com/article/3798/programming-with-swing/5/
Eclipse RCP 将是一个更好的解决方案。每个视图都是 MDI 的子窗口。
Eclipse RCP would be a better solution. Each view would be the child window of the MDI.