ノード(グラフプロジェクト)の値を記述するテキストエリアを表示したいのですが、テキストを選択するたびに乱雑になるので、分割できないようにしたいです!これはコードです:
public class TransparentTextArea extends JTextArea {
String texte;
public TransparentTextArea(String texte) {
this.setLineWrap(true);
this.setWrapStyleWord(true);
this.texte = texte;
this.setBackground(new Color(255, 0, 9, 0));
this.setFont(new Font("Serif", Font.ITALIC, 24));
this.setEditable(false);
this.setText(texte);
this.setSize(new Dimension(200,100 ));
}
}
どうも