I have a Swing JFrame with some controls in a GridLayout.
My problem is that the controls (Text fields) appear too small when the frame is minimized. I tried to avoid this by setting:
setPreferredSize
and
setSize
but still, I have to maximize the frame to see the controls clearly.
How can I solve this ?
Thanks