Jump to content

problema com scrollpane de um jlist


amvm

Recommended Posts

Boa tarde,

não percebo o porquê de não conseguir mostrar o scrollpane numa JList...

String[] info = {"Lista vazia!!"};
       JPanel flow = new JPanel(new FlowLayout());
       flow.setBorder(BorderFactory.createTitledBorder("Chaves primárias:"));
       //cria uma JList com o nome dos campos inseridos
       nomeCampos = new JList(info);
       nomeCampos.setPreferredSize(new Dimension(150, 10));
       //permite que sejam seleccionados varios campos
       nomeCampos.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
       JScrollPane jsp = new JScrollPane(nomeCampos);
       flow.add(jsp);
       panel.add(flow);

esse panel está inserido num grid que, por sua vez, está inserido no centro de um borderLayout().

alguém sabe o que está mal?

cumprimentos

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.