1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
String categories[] = { "Household", "Office", "Extended Family", "Company (US)", "Company (World)", "Team", "Will",
"Birthday Card List", "High School", "Country", "Continent", "Planet" };
//Instanciation de ta JInternalFrame
jInternalFrame = new JInternalFrame();
jInternalFrame.setBounds(new Rectangle(57, 35, 162, 182));
...
//Ta JList
jList = new JList(categories);
jList.setAutoscrolls(true);
...
//Ton ScrollPane avec ta JList
JScrollPane scrollpane = new JScrollPane();
scrollpane.setViewportView(jList);
jInternalFrame.setContentPane(scrollpane);
... |
Partager