D
^DaKu
Gast
Moin.
Ich habe hier ein kleine Problem mit Scrollbars in einem JPanel eines JWindows
hier mal das Window:
Aufgerufen wird es über einen Button mit der Größe (also die Window-Größe)
Nun wird ja der Horizontale Scrollbar auch angezeigt, ist jedoch nicht scrollbar, sollte aber da ja das info_a Label nach unten hin größer als das main-Label ist.
Wie bekomme ich es nun hin, das es auch scrollbar wird?
Danke schon mal & MfG
Ich habe hier ein kleine Problem mit Scrollbars in einem JPanel eines JWindows
hier mal das Window:
Java:
public class InfoVO extends JWindow
{
JPanel mvp;
JScrollPane jsp;
static JLabel info_b = new JLabel();
{
this.getContentPane().add(info_b);
info_b.setBounds(5, 5, 150, 50);
info_b.setText("InfoB");
info_b.setVisible(true);
}
static JLabel info_c = new JLabel();
{
this.getContentPane().add(info_c);
info_c.setBounds(5, 60, 150, 50);
info_c.setText("InfoC");
info_c.setVisible(true);
}
static JLabel info_a = new JLabel();
{
this.getContentPane().add(info_a);
info_a.setBounds(5, 115, 150, 150);
info_a.setText("InfoA");
info_a.setVisible(true);
}
public InfoVO()
{
mvp = new JPanel();
jsp = new JScrollPane(mvp);
jsp.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
this.getContentPane().add(jsp, BorderLayout.CENTER);
this.setVisible(true);
}
}
Aufgerufen wird es über einen Button mit der Größe (also die Window-Größe)
Java:
winfo.setBounds(100, 100, 250, 200);
Nun wird ja der Horizontale Scrollbar auch angezeigt, ist jedoch nicht scrollbar, sollte aber da ja das info_a Label nach unten hin größer als das main-Label ist.
Wie bekomme ich es nun hin, das es auch scrollbar wird?
Danke schon mal & MfG