1

我在stackoverflow和互联网上搜索过,但没有用。滚动条不出现。请帮助我,如果可行,我将很乐意为您的答案投票。这是代码:(提前感谢!)

package com.james.client;

import javax.swing.*;
import javax.swing.UIManager.LookAndFeelInfo;

public class Main extends JFrame{

private static final long serialVersionUID = 1L;

public static void main(String [] args) throws ClassNotFoundException, InstantiationException, IllegalAccessException, UnsupportedLookAndFeelException
{
    //Set program to nimbus
    for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
        if ("Nimbus".equals(info.getName())) {
            UIManager.setLookAndFeel(info.getClassName());
            break;
     }
    }
    //Window stuff
    JFrame window = new JFrame("MinecraftProgrammer++");
    window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    window.setSize(1000, 600);
    window.setResizable(false);

    JPanel content = new JPanel();
    content.setLayout(null);

    JMenuBar nav = new JMenuBar();
    JMenu file = new JMenu("File");
    JMenu newfile = new JMenu("New");
    JMenuItem Class = new JMenuItem("Class");
    JMenuItem Package = new JMenuItem("Package");
    JMenuItem Other = new JMenuItem("Other");

    newfile.add(Class);
    newfile.add(Package);
    newfile.add(Other);
    file.add(newfile);
    nav.add(file);

    JTextPane code = new JTextPane();
    JScrollPane codescroll = new JScrollPane(code);
    codescroll.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
    codescroll.setBounds(0, 0, 994, 547);
    code.setAutoscrolls(true);
    code.setBounds(0, 0, 994, 547);

    content.add(codescroll);
    content.add(code);
    window.setJMenuBar(nav);
    //No more code after this line
    window.add(content);
    window.setVisible(true);
}
}
4

1 回答 1

3

删除这一行:

content.add(code);

您已经将 JTextPane 添加到 ScrollPane。您不需要将 JTextPane 再次添加到您的 JPanel。

于 2013-05-05T00:04:42.213 回答