WadiSoft
WadiSoft

Reputation: 1

How to get my components to re-size properly with JFrame in execution Java eclipse GUI Builder

i want to create this exact Jframe with Java Eclipse Software

ayout

(image : http://icpb.com.br/wp-content/uploads/2013/03/membros.png)

And I want the size to be fixed ( probably the same as the image) the problem is when it will be executed in a different computers with different screen resolution will it be the same or some components will be hided in borders?

I need some code lines which will allow a dynamic resizing in different screen resolution without any bad effect of the JFrame Design . Thank you

Upvotes: 0

Views: 1164

Answers (1)

aleroot
aleroot

Reputation: 72636

If you want to have a dynamic resizing you should give a try to the GroupLayout that can easily be managed by Window Builder in the Eclipse IDE.

Once you will enable GroupLayout WindowBuilder Design view will show you two arrows on the corner of the component where you can arrange the alignment and the anchor of the component .

example WindowBuilder

Upvotes: 1

Related Questions