MDI application with JAVA
I wan开发者_运维知识库t 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
Yes this can be done in Swing by using JInternalFrame. An example: http://www.developerfusion.com/article/3798/programming-with-swing/5/
Eclipse RCP would be a better solution. Each view would be the child window of the MDI.
精彩评论