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 に答える