【发布时间】:2016-05-04 21:50:24
【问题描述】:
所以我有一个包含 JPanel 的 JFrame,并在其中添加了带有我想要的信息的 JLabels,但是由于我会在某些时候一直添加标签,所以文本太长而无法显示,所以我想添加一个滚动条.基本上我想让我的 JFrame 中带有 JPanel 可滚动。我有这段代码,但我的问题是,即使出现了滚动条,但它没有移动,并且当文本很多时也没有真正起作用,这意味着文本仍然被剪切掉并且滚动条没有移动。有谁知道如何解决这个问题?
import javax.swing.*;
import java.awt.*;
import java.util.*;
public class Bar {
JFrame info = new JFrame("Information");
JLabel ballinf = new JLabel();
JPanel contentPane = new JPanel();
JScrollPane scrolling = new JScrollPane();
public Bar(){
contentPane.setOpaque(true);
contentPane.setBackground(Color.WHITE);
contentPane.setLayout(null);
scrolling = new JScrollPane(contentPane,JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
info.add(scrolling);
info.setSize(750, 600);
info.setLocationByPlatform(true);
info.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
info.setVisible(true);
}
public void adding(int pos){
ballinf = new JLabel("Something ",JLabel.CENTER);//assume the text will be bigger here and have more info
ballinf.setSize(700, 30);
ballinf.setForeground(Color.green);
ballinf.setLocation(5, 5+pos);
contentPane.add(ballinf);
info.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
info.setVisible(true);
}
public static void main(String[] args){
Bar stats = new Bar();
stats.adding(0);
stats.adding(20);//this will be done in a for loop for more than 2 times so the text ends up to be a lot
}
}
【问题讨论】:
标签: java swing jframe jpanel jscrollpane