Weiss nicht, warum ich dieses einfach Problem nicht hinkriege... (Habe ich auch schon gemacht und damals funktionierte der Code.)
Wieso scrollt diesses Ding nicht?!
Bin dankbar für jegliche Hilfe.
Code:
public class FieldCanvas extends JPanel {
public FieldCanvas() {
}
}
..
public class Main extends JFrame {
JScrollPane sp;
public Main() {
...
this.getContentPane().setLayout(null);
...
load();
}
public load() {
FieldCanvas fc = new FieldCanvas();
fc.setSize(800,800);
if(sp != null) {
this.remove(sp);
}
sp = new JScrollPane(fc);
sp.setBounds(20,20,500,500);
this.getContentPane().add(sp);
}
}
Wieso scrollt diesses Ding nicht?!
Bin dankbar für jegliche Hilfe.