您好,我正在尝试制作游戏,我想做的一件基本事情是添加一个带有滚动条的 JTextArea。这是我的代码:
package TestStuff;
import javax.swing.*;
@SuppressWarnings("serial")
public class JTextAreaTest extends JFrame
{
public static void main(String[] args)
{
new JTextAreaTest();
}
public JTextAreaTest()
{
this.setSize(1500, 600);
setDefaultCloseOperation(
JFrame.EXIT_ON_CLOSE);
this.setLocation(450, 175);
this.setExtendedState(JFrame.
MAXIMIZED_BOTH);
this.setTitle("Game Display Test");
panel1 = new JPanel(null);
final JTextArea gameDisplay = new JTextArea(
500, 300);
gameDisplay.setBounds(424, 300, 500, 300);
gameDisplay.setBackground(Color.BLACK);
Font font = new Font ("Verdana", Font.BOLD,
14);
gameDisplay.setFont(font);
gameDisplay.setForeground(Color.WHITE);
final JScrollPane displayScroll = new JScrollPane(
gameDisplay);
displayScroll.setHorizontalScrollBarPolicy(
JScrollPane.HORIZONTAL_SCROLLBAR_AS_
NEEDED);
displayScroll.setVerticalScrollBarPolicy(
JScrollPane.
VERTICAL_SCROLLBAR_AS_NEEDED);
panel1.add(gameDisplay);
panel1.add(displayScroll);
setContentPane(panel1);
this.setVisible(true);
}
}
当我运行它时一切正常,但是当文本超出 JTextArea 的范围时,滚动条永远不会出现!是的,我知道我使用的是绝对定位(无布局),这很糟糕,但我在游戏中需要它是因为其他原因。提前致谢!(另外,由于某种原因,我无法在我的电脑上连接到这个网站,但我以前用过你们,你们很棒,所以我必须在手机上输入这个。抱歉,如果问题的布局搞砸了,它是电话:P)