java-不显示JScrollPane
作者:互联网
String test[] = {"1", "2", "3", "4", "5", "6", "7", "75" };
list = new JList(test);
list.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
list.setLayoutOrientation(JList.VERTICAL);
list.setVisibleRowCount(5);
list.setLocation(50,159);
list.setSize(50, 100);
JScrollPane jScrollPane1= new JScrollPane();
jScrollPane1.setViewportView(list);
add(jScrollPane1);
编辑:你们说过更新了我的代码.还是行不通 :(
因此,基本上这是该列表的全部代码.当我运行程序时,您会看到列表.但是您只能看到前5个数字,并且无法滚动或类似内容.我知道,显示前5个数字是有意的.
那么,没有滚动条该怎么办呢?
顺便说一句,我用谷歌搜索了很多年,所以没有一个令人讨厌的答案…
感谢您的阅读和帮助我^^
解决方法:
试试这个
JScrollPane jScrollPane1= new JScrollPane()
jScrollPane1.setViewportView(jList1);
getContentPane().setLayout(null);// here u specify layout put the layout what u want
getContentPane().add(jScrollPane1);// add to the contentPane
jScrollPane1.setBounds(126, 63, 100, 100);// here we set coordinates x, y width height cause we have null layout
pack();// Size the frame.
注意您应始终提供layoutManager
因此,您不必setBounds“硬编码”
JScrollPane jScrollPane1= new JScrollPane()
jScrollPane1.setViewportView(jList1);
setLayout(new BorderLayout());
add(jScrollPane1);// add to the frame
pack();// Size the frame.
同样好的做法是使用顶级容器添加到Frame中,例如,您可以使用JPanel
setLayout(new BorderLayout());
JPanel panel = new JPanel();
panel.setLayout(new VerticalLayout()); // this layout is in swingx package
JScrollPane jScrollPane1= new JScrollPane()
jScrollPane1.setViewportView(jList1);
setLayout(new BorderLayout());
panel.add(jScrollPane1);// add to the frame
add(panel);
pack();// Size the frame.
标签:jlist,swing,jscrollpane,java 来源: https://codeday.me/bug/20191030/1970668.html