10 个解决方案
#1
你应该把JScrollPanel添加到JPanel中。
#2
我以前的做法是.先设置JPanel.setborder(Color.RED).看看这个JPanel宽高是多少!
如果其很小,不出现滚动条就很正常了.
如果其很小,不出现滚动条就很正常了.
#3
如果jpanel的宽高比jscrollPane小的话,就不会出现滚动条了.
要想出现的话, 用这段code看看:
------------------------------------------
jpanel.setPreferredSize(new Dimension(jscrollPane.getWidth()*2,jscrollPane.getHeight()*2));//保证宽高大于jscrollPane的宽高
jpanel.revalidate(); //告诉其他部件,我的宽高变了
------------------------------------------
要想出现的话, 用这段code看看:
------------------------------------------
jpanel.setPreferredSize(new Dimension(jscrollPane.getWidth()*2,jscrollPane.getHeight()*2));//保证宽高大于jscrollPane的宽高
jpanel.revalidate(); //告诉其他部件,我的宽高变了
------------------------------------------
#4
帮顶
#5
帮顶
#6
3楼正解
#7
jscrollPane是要添加到JPanel里面的,所以宽度和高度要比JPane小才能显示出来~
#8
要想出现的话, 先看看这段代码:
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
public class TestJScrollPane extends JFrame {
private static final long serialVersionUID = 1L;
public TestJScrollPane() {
super("TestJScrollPane");
this.setLayout(null);
this.setBounds(200, 200, 200, 200);
JLabel label = new JLabel("深入浅出Java Swing 程序设计");
JPanel panel = new JPanel();
panel.add(label);
JScrollPane scrollPane = new JScrollPane(panel);
scrollPane.setBounds(10, 10, 175, 50);
this.add(scrollPane);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
new TestJScrollPane();
}
}
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
public class TestJScrollPane extends JFrame {
private static final long serialVersionUID = 1L;
public TestJScrollPane() {
super("TestJScrollPane");
this.setLayout(null);
this.setBounds(200, 200, 200, 200);
JLabel label = new JLabel("深入浅出Java Swing 程序设计");
JPanel panel = new JPanel();
panel.add(label);
JScrollPane scrollPane = new JScrollPane(panel);
scrollPane.setBounds(10, 10, 175, 50);
this.add(scrollPane);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
new TestJScrollPane();
}
}
#9
你要设置Panel的PreferredSize才能显示滚动条。
#10
没设置高度
#1
你应该把JScrollPanel添加到JPanel中。
#2
我以前的做法是.先设置JPanel.setborder(Color.RED).看看这个JPanel宽高是多少!
如果其很小,不出现滚动条就很正常了.
如果其很小,不出现滚动条就很正常了.
#3
如果jpanel的宽高比jscrollPane小的话,就不会出现滚动条了.
要想出现的话, 用这段code看看:
------------------------------------------
jpanel.setPreferredSize(new Dimension(jscrollPane.getWidth()*2,jscrollPane.getHeight()*2));//保证宽高大于jscrollPane的宽高
jpanel.revalidate(); //告诉其他部件,我的宽高变了
------------------------------------------
要想出现的话, 用这段code看看:
------------------------------------------
jpanel.setPreferredSize(new Dimension(jscrollPane.getWidth()*2,jscrollPane.getHeight()*2));//保证宽高大于jscrollPane的宽高
jpanel.revalidate(); //告诉其他部件,我的宽高变了
------------------------------------------
#4
帮顶
#5
帮顶
#6
3楼正解
#7
jscrollPane是要添加到JPanel里面的,所以宽度和高度要比JPane小才能显示出来~
#8
要想出现的话, 先看看这段代码:
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
public class TestJScrollPane extends JFrame {
private static final long serialVersionUID = 1L;
public TestJScrollPane() {
super("TestJScrollPane");
this.setLayout(null);
this.setBounds(200, 200, 200, 200);
JLabel label = new JLabel("深入浅出Java Swing 程序设计");
JPanel panel = new JPanel();
panel.add(label);
JScrollPane scrollPane = new JScrollPane(panel);
scrollPane.setBounds(10, 10, 175, 50);
this.add(scrollPane);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
new TestJScrollPane();
}
}
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
public class TestJScrollPane extends JFrame {
private static final long serialVersionUID = 1L;
public TestJScrollPane() {
super("TestJScrollPane");
this.setLayout(null);
this.setBounds(200, 200, 200, 200);
JLabel label = new JLabel("深入浅出Java Swing 程序设计");
JPanel panel = new JPanel();
panel.add(label);
JScrollPane scrollPane = new JScrollPane(panel);
scrollPane.setBounds(10, 10, 175, 50);
this.add(scrollPane);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
new TestJScrollPane();
}
}
#9
你要设置Panel的PreferredSize才能显示滚动条。
#10
没设置高度