JTextPane背景颜色

时间:2014-03-26 22:41:45

标签: java swing jtextpane

我正在制作一个基于文本的游戏,用户输入文字来解决游戏问题。我决定使用java swing来显示文本,我希望textPane的背景为黑色。我已经尝试了我发现的所有内容(已注释掉),但是它似乎没有用。

    private JTextPane blackJTextPane() {
    //JTextPane area = new JTextPane();
    //area.setBackground(Color.BLACK);
    //area.setForeground(Color.WHITE);
    JEditorPane area = new JEditorPane();

      Color bgColor = Color.BLACK;
      UIDefaults defaults = new UIDefaults();
      defaults.put("EditorPane[Enabled].backgroundPainter", bgColor);
      area.putClientProperty("Nimbus.Overrides", defaults);
      area.putClientProperty("Nimbus.Overrides.InheritDefaults", true);
      area.setBackground(bgColor);

   return area;
  }
public Everything(){
    super("Game");
    try {
        UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
    } catch (Exception exc) {

        // ignore error
    }
    setSize(600,500);
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    BorderLayout layout = new BorderLayout(); 
    setLayout(layout);
    setVisible(true);

    text = new JLabel("");
    text.setText("Text:");

    texts = new JTextField(20);
    texts.setBackground(Color.white);
    texts.setText("");

    JPanel panel = new JPanel();

    panel.add(text );
    panel.add(texts);

    texts.addActionListener(this);
    add(panel, BorderLayout.SOUTH);


    UIDefaults defs = UIManager.getDefaults();
    defs.put("TextPane.background", new ColorUIResource(Color.BLACK));
    defs.put("TextPane.inactiveBackground", new ColorUIResource(Color.BLACK));


    area = blackJTextPane();

    area.setEditable(false);

    style = area.addStyle("style", null);
    //StyleConstants.setBackground(style, Color.black);

    JScrollPane pane = new JScrollPane(area);
    add(pane, BorderLayout.CENTER);

    doc = area.getStyledDocument();

    button.addActionListener(this);

    setVisible(true);







}

这里没有图片导入,但是当我使用任何已注释的部分运行时,游戏中没有错误。

1 个答案:

答案 0 :(得分:9)

您可能遇到Nimbus不考虑背景颜色设置的问题。试试这个来覆盖颜色:

  JEditorPane area = new JEditorPane();

  Color bgColor = Color.BLACK;
  UIDefaults defaults = new UIDefaults();
  defaults.put("EditorPane[Enabled].backgroundPainter", bgColor);
  area.putClientProperty("Nimbus.Overrides", defaults);
  area.putClientProperty("Nimbus.Overrides.InheritDefaults", true);
  area.setBackground(bgColor);