目前我正在尝试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)
,我会看到文本区域,但无法滚动。
我在这里做错了什么?