Citation:
JScrollPane jScroll = new JScrollPane();
jScroll.setPreferredSize(new Dimension(700,600));
// Je le met ce Layout null, car je veux pouvoir placé mes composant moi meme.
jScroll.getViewport().setLayout( null );
JButton b = new JButton("Ok");
b.setBounds(200,200,600,1000);
jScroll.getViewport().add(b);
jScroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
jScroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
Quelqu'un m'explique pourquoi je peut pas scroller mon JScrollPane ^^