0
我想向我的文本區域添加滾動條,並且知道添加滾動條的簡單代碼,但是當我將滾動條的代碼放到整個文本區域時,消失了!將ScrollBar添加到JTextArea
什麼問題?
這裏是我的代碼:
private JFrame frame;
private JTextArea textarea;
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
SmsForm window = new SmsForm();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public SmsForm() {
initialize();
}
private void initialize() {
frame = new JFrame("???");
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
JPanel groupBoxEncryption = new JPanel();
final JTextArea textarea=new JTextArea();
textarea.setBounds(50, 100, 300, 100);
frame.getContentPane().add(textarea);
textarea.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
JScrollPane scrollPanePlain = new JScrollPane(textarea);
groupBoxEncryption.add(scrollPanePlain);
scrollPanePlain.setBounds(100, 30, 250, 100);
scrollPanePlain.setVisible(true);
綜合各方面的意見已經提供了,但不是加'textarea'到幀中,添加'scrollPanePlain',而不是... – MadProgrammer
停止使用'創造絕對Positioning''GUI'而是使用正確的'佈局經理「,這將幫助您以更少的努力獲得美妙的結果。一個相關的[示例](http://stackoverflow.com/a/13098108/1057230),對於一些幫助:-) –