Hallo Leute!
Ich bräuchte bitte schnell Eure hilfe!
Ich habe ein JPanel mit einem GridbagLayout! In diesem Panel werden halt einige TextFields + Labels angezeigt. Ich probiere jetzt schon verzweifelt, wie ich es schaffe hier noch eine JScrollPane hinein zubekommen, sie wird zwar angezeigt, aber nur oben in der ersten Spalte ganz klein.
Hier mein Code, falsse ihr in braucht:
JScrollPane scroll = new JScrollPane(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
JButton ok = new JButton("Änderungen speichern");
int gridy;
public Inventur()
{
scroll.setViewportView(this);
this.add(scroll);
GridBagLayout grid = new GridBagLayout();
this.setLayout(grid);
con = new GridBagConstraints();
db.Load load = new db.Load();
list = load.getMaterialStand();
Ich bräuchte bitte schnell Eure hilfe!
Ich habe ein JPanel mit einem GridbagLayout! In diesem Panel werden halt einige TextFields + Labels angezeigt. Ich probiere jetzt schon verzweifelt, wie ich es schaffe hier noch eine JScrollPane hinein zubekommen, sie wird zwar angezeigt, aber nur oben in der ersten Spalte ganz klein.
Hier mein Code, falsse ihr in braucht:
JScrollPane scroll = new JScrollPane(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
JButton ok = new JButton("Änderungen speichern");
int gridy;
public Inventur()
{
scroll.setViewportView(this);
this.add(scroll);
GridBagLayout grid = new GridBagLayout();
this.setLayout(grid);
con = new GridBagConstraints();
db.Load load = new db.Load();
list = load.getMaterialStand();