是否有一个没有文本区域但只有滚动条的 JOptionPane 窗口,
JTextArea listBox = new JTextArea(aLineFromFile);
JScrollPane scroll = new JScrollPane(listBox);
listBox.setLineWrap(true);
listBox.setWrapStyleWord(true);
scroll.setPreferredSize(new Dimension(200, 400));
JOptionPane.showMessageDialog(null, scroll, "Dictionary enteries", JOptionPane.PLAIN_MESSAGE);
我不想要文本后面的白色背景,我只想要滚动条。或者无论如何使文本区域中的文本不可编辑。