如何在 Java 中為 JTextPane 設定預設背景色?


若要設定 JTextPane 的預設背景色,請使用 SimpleAttributeSet 和 StyleConstants 類。首先,建立一個新的 JTextPane –

JTextPane pane = new JTextPane();

現在,使用這些類設定樣式和顏色 –

SimpleAttributeSet attributeSet = new SimpleAttributeSet();
StyleConstants.setBackground(attributeSet, Color.white);

現在,將該設定應用於該面板 –

pane.setCharacterAttributes(attributeSet, true);

以下是如何為 JTextPane 設定預設背景色的示例 –

示例

package my;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Container;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextPane;
import javax.swing.text.BadLocationException;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.StyleConstants;
public class SwingDemo {
   public static void main(String args[]) throws BadLocationException {
      JFrame frame = new JFrame("Demo");
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      Container container = frame.getContentPane();
      JTextPane textPane = new JTextPane();
      textPane.setBackground(Color.cyan);
      SimpleAttributeSet attributeSet = new SimpleAttributeSet();
      StyleConstants.setItalic(attributeSet, true);
      StyleConstants.setForeground(attributeSet, Color.blue);
      StyleConstants.setBackground(attributeSet, Color.white);
      textPane.setCharacterAttributes(attributeSet, true);
      textPane.setText("Updated the background color of the text pane.");
      JScrollPane scrollPane = new JScrollPane(textPane);
      container.add(scrollPane, BorderLayout.CENTER);
      frame.setSize(550, 300);
      frame.setVisible(true);
   }
}

輸出

更新於: 2019 年 7 月 30 日

748 次瀏覽

開啟你的 職業生涯

完成課程即可獲得認證

開始
廣告
© . All rights reserved.