我有以下代码: 主:
package PackageMain;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.WindowConstants;
public class Main {
public static JFrame frame = new JFrame("Window");
public static PanelOne p1;
public static PanelTwo p2;
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.setBounds(100, 100, 800, 600);
p1 = new PanelOne();
p2 = new PanelTwo();
frame.setVisible(true);
} catch(Exception e){
}
}
});
}
第2课:
package PackageMain;
import java.awt.Color;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.DefaultListModel;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.ScrollPaneConstants;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;
public class PanelOne{
public PanelOne(){
loadScreen();
}
public void loadScreen(){
JPanel p1 = new JPanel();
DefaultListModel model = new DefaultListModel<String>();
JList list = new JList<String>(model);
//
JScrollPane scroll = new JScrollPane(list);
list.setPreferredSize(null);
scroll.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS;
scroll.setViewportView(list);
//
list.addListSelectionListener(new ListSelectionListener() {
public void valueChanged(ListSelectionEvent arg0) {
System.out.println("You selected " + list.getSelectedValue());
}
});
p1.add(list);
Main.frame.add(p1);
Main.frame.revalidate();
Main.frame.repaint();
for (int i = 0; i < 100; i++){
model.addElement("test");
}
}
我已经尝试了很多东西来让JScrollPane出现在JList上,但它不想这样做。我最好的猜测是该模型搞砸了,但这是一个简化版本,模型需要在那里。
答案 0 :(得分:2)
您将列表添加到太多组件:到JScrollPane的视口 - 确定,但也到p1 JPanel - 不行。将其仅添加到视口,然后将JScrollPane添加到GUI(如果需要,则为p1)。
此外:
list.setPreferredSize(null);
???? 答案 1 :(得分:2)
JScrollPane scroll = new JScrollPane(list);
将JList添加到JScrollPane是正确的。
p1.add(list);
然后你将JList
添加到JPanel , which is incorrect. A component can only have a single parent, so the
JList is removed from the
JScrollPane`。
您需要将JScrollPane
添加到JPanel
:
p1.add( scroll );
答案 2 :(得分:0)
只需将Scroll Pane
添加到框架而不是List
。
使用以下代码更改您的行:
Main.frame.add(scroll);