Create a scrollable list : Scrollpane « Swing JFC « Java
- Java
- Swing JFC
- Scrollpane
Create a scrollable list
import javax.swing.JList;
import javax.swing.JScrollPane;
public class Main {
public static void main(String[] argv) throws Exception {
JList list = new JList();
JScrollPane scrollableList = new JScrollPane(list);
}
}
Related examples in the same category