gpt4 book ai didi

Java GUI JScrollPane 隐藏文本

转载 作者:行者123 更新时间:2023-12-01 14:04:24 24 4
gpt4 key购买 nike

目前我正在尝试让 JScrollPane 与我正在创建的 GUI 一起使用。我目前有一个名为 consoleTextArea 的文本区域,我希望能够滚动它。目前我的代码是:

consoleTextArea = new JTextArea();
consoleTextArea.setBounds(10, 11, 546, 459);

JScrollPane scroller = new JScrollPane(consoleTextArea);
scroller.setBounds(0, 451, 551, -451);
scroller.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
panel.add(scroller);

如果我使用panel.add(scroller),我什至看不到textArea。
如果我使用 panel.add(consoleTextArea),我会看到文本区域,但无法滚动。

我在这里做错了什么?

最佳答案

您很可能没有使用布局管理器。如果不使用布局管理器 ( absolute positioning ),您会遇到组件大小或位置不正确的此类问题。这是使用它的一个很好的理由。

阅读:Using Layout Managers

关于Java GUI JScrollPane 隐藏文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19032479/

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