I'm developing an application which displays images, and plays sounds from a database. I'm trying to decide, whether to use a separate JFrame to add Images to the Database from the GUI. I'm just wondering whether it is good practice to use multiple JFrames?
|
Bad (bad, bad) practice.
There are any number of ways of displaying many elements in one GUI, as detailed in:
But if those strategies do not work for a particular use-case, try the following. Establish a single main
Yes,
|
|||||||||||||||||||||
|
|
Make an jInternalFrame into main frame and make it invisible. Then you can use it for further events.
|
||||
|
|
|
Bad practice definitely. One reason is that it is not very 'user-friendly' for the fact that every JFrame shows a new taskbar icon. Controlling multiple JFrames will have you ripping your hair out. Personally, I would use ONE JFrame for your kind of application. Methods of displaying multiple things is up to you, there are many. Canvases, JInternalFrame, CardLayout, even JPanels possibly. Multiple JFrame objects = Pain, trouble, and problems.
|
|||||
|
|
It's been a while since the last time i touch swing but in general is a bad practice to do this. Some of the main disadvantages that comes to mind:
|
|||
|
|


