gpt4 book ai didi

java - 使 JTextArea 在 Swing 中可滚动

转载 作者:行者123 更新时间:2023-12-02 13:26:51 24 4
gpt4 key购买 nike

如何才能使我的 JTextArea 可以滚动。我想让 keysDisplay 有一个滚动条,可用于滚动文本区域。我跳过了 jFramePrint() 中一些无关的代码。

public class ApplicationViewer extends JFrame {

private JTabbedPane tabs = new JTabbedPane();
private JTextArea keyGenDisplay = new JTextArea();
private JTextArea keysDisplay = new JTextArea();

private JPanel controlPanel = new JPanel();
private JButton addNumber = new JButton("Add Number");
private JButton addLetter = new JButton("Add Letter");
private JButton addHyphen = new JButton("Add Hyphen");
private JButton calculateButton = new JButton("Calculate Key");

private JTextField amountField = new JTextField("", 6);
private JLabel amountLabel = new JLabel(" Amount of Keys : ");
private JScrollPane scroll = new JScrollPane(keysDisplay);

public void jFramePrint() {

this.setLayout(new BorderLayout());
this.add(controlPanel, BorderLayout.SOUTH);


controlPanel.add(addNumber);
controlPanel.add(addLetter);
controlPanel.add(addHyphen);
controlPanel.add(amountLabel);
controlPanel.add(amountField);
controlPanel.add(calculateButton);

this.add(scroll);

this.setSize(1400, 900);
this.setTitle("Key Generator");
this.setDefaultCloseOperation(EXIT_ON_CLOSE);

keyGenDisplay.append("Key Format: ");
keysDisplay.append("Keys Here: ");

tabs.add("Key Generator", keyGenDisplay);
tabs.add("Keys", keysDisplay);

this.add(tabs);
this.setVisible(true);

}
}

最佳答案

private JTextArea keysDisplay = new JTextArea();

首先你应该使用类似的东西:

private JTextArea keysDisplay = new JTextArea(5, 20);

这将允许文本区域计算其自己的首选大小。当滚动条添加到滚动 Pane 并且超过 5 行文本添加到文本区域时,滚动条将正常工作。

this.add(scroll);

...

this.add(tabs);

您的框架正在使用BorderLayout。当您不使用约束时,“默认使用 CENTER”。

您不能将多个组件添加到 BorderLayout 的同一区域。因此仅显示最后添加的组件。

为选项卡组件指定不同的约束。

关于java - 使 JTextArea 在 Swing 中可滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43354772/

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