-Java- Swing GUI - Moving around components specifically with layouts
- by Xemiru Scarlet Sanzenin
I'm making a little test GUI for something I'm making.
However, problems occur with the positioning of the panels.
public winInit() {
super("Chatterbox - Login");
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch(ClassNotFoundException e) {
} catch (InstantiationException e) {
} catch (IllegalAccessException…