滚动条没有出现在“框架”中,并且TextArea无法编辑,请提供帮助,谢谢:)

import javax.swing.*;
import java.awt.*;

public class Test extends JFrame{
    Container c;
    JTextArea jT;
    JScrollPane scroll;
    public Test(){
        c = getContentPane();
        c.setLayout(new GridLayout(1,1));
        jT = new JTextArea();
        scroll = new JScrollPane();  //creating JScrollPane
        scroll.add(jT);              // adding jT to scroll
        c.add(scroll);
    }
    public static void main(String[] args){
        Test fenster = new Test();
        fenster.setLocationRelativeTo(null);
        fenster.setTitle("Test");
        fenster.setSize(200, 200);
        fenster.setVisible(true);
        fenster.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }
}

最佳答案

您需要使用需要为其显示滚动条的组件来初始化“滚动窗格”。

    scroll = new JScrollPane(jT);  //creating JScrollPane; Do this
//  scroll.add(jT);                // don't do this

关于java - JTextArea到ScrollPane不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44773546/

10-12 03:48