16

如何将 JList 添加到 JScrollPane ?

4

1 回答 1

30

把你JListJScrollPane

JScrollPane scrollPane = new JScrollPane();
JList list = new JList();
scrollPane.setViewportView(list);
于 2013-03-20T11:55:59.643 回答