gpt4 book ai didi

java - JTextArea 到 ScrollPane 不起作用

转载 作者:行者123 更新时间:2023-12-02 12:46:06 25 4
gpt4 key购买 nike

滚动条没有出现在框架中,并且文本区域不知何故不可编辑,请帮忙,谢谢:)

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);
}
}

最佳答案

您需要使用需要显示滚动条的组件来初始化滚动 Pane 。

    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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com