How do you add a JList to a JScrollPane ?
Put your JList
in a JScrollPane
JScrollPane scrollPane = new JScrollPane();
JList list = new JList();
scrollPane.setViewportView(list);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With