gpt4 book ai didi

java - 滚动条未显示在 JTextArea 中

转载 作者:行者123 更新时间:2023-12-01 23:57:57 26 4
gpt4 key购买 nike

我正在尝试放置一个滚动文本区域,称为descriptionScroll。但是,滚动条不可见。我尝试了很多方法,但都以失败告终。

我是否缺少任何东西来显示滚动条?它应该出现在“描述”旁边的大文本框的右侧

这是相关代码段:

import javax.swing.JScrollPane;
import javax.swing.JTextArea;

protected JTextArea descriptionTextArea;


protected JScrollPane descriptionScroll;


String descriptionText =
"Lot ID(s):\n" +
"Wafer ID(s):\n" +
"PSPT(Probe Ship Part Type):\n" +
"Tester:\n" +
"Tester Job Name:\n" +
"PID (FPP, FPC):\n" +
"Reprobe required before shipping lot? (Y/N)\n\n" +
"Hold for (individual):\n" +
"Hold for (group)\n" +
"Expected release date\n" +
"Hold Comments:\n\n" +
"Shipping Information:\n" +
"Special Instructions:\n";


public Constructor(){

descriptionTextArea = new JTextArea(descriptionText);
descriptionScroll = new JScrollPane(descriptionTextArea, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
add(descriptionTextArea);
add(descriptionScroll);
pack();

setSize(790, 625);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setLocationRelativeTo(null);
setVisible(true);


descriptionTextArea.setSize(650, 200);
descriptionTextArea.setLocation(110, 228);
descriptionTextArea.setLineWrap(true);



}

Missing scroll

最佳答案

您要将 JScrollPane 和 JTextArea 添加到同一个容器中。将 JTextArea 添加到 JScrollPane:

descriptionScroll.add(descriptionTextArea);

关于java - 滚动条未显示在 JTextArea 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15303048/

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