Originally Posted by
lugaru
Hi, guys. Im quite new in Java and specially in GUI. Im using GridBagLayout and I have one problem all my components aligning to center but I need to left and top. How I can do that?
Use GridBagConstraints.anchor property.
Originally Posted by
lugaru
How I can set minimum and maximum size of my application(for ex. I have app. with size 500*300 but I want set min. size 400*200 and max. size 600*400)?
component.setMinimumSize(), component.setMaximumSize()
Originally Posted by
lugaru
Can you give me an advice where I can search and how I can change view of my components (font, size, color, shape)?
component.setFont(), component.setBackground(), component.setForeground()
Spring 3