I am utilizing Java Swing for the Design of a GUI.
Due to a change of Scope the Size of the GUI has to be changed. The GUI is currently developed under a JFrame class. However, I suspect that due to layout, GroupLayout, when I maximize the app, the components gets distorted.
Screenshot using GroupLayout:
[maximized]
http://s9.postimage.org/g8rmf03ql/Capture.png
[normal minimize]
http://postimage.org/image/oapd9590l/
bump
try using BorderLayout. Here is the tutorial for Java BorderLayout.
http://docs.oracle.com/javase/tutorial/uiswing/layout/border.html
This is the easy way to arrange your components inside the JFrame.