0

我想让我的TextArea 黑色而不是白色。我希望制作Window全屏,整个屏幕都是黑色的TextArea并且白色的字母。

我怎样才能做到这一点?

4

2 回答 2

3

试试这个..

JTextArea txt = new JTextArea();
txt.setBackground(Color.BLACK);
txt.setForeground(Color.WHITE);
于 2012-07-22T17:21:35.177 回答
1

对于摆动组件

JTextArea txt = new JTextArea();
//Set background black
txt.setBackground(Color.BLACK); 
//Set Foreground(text) white
txt.setForeground(Color.WHITE); 

awt 组件也是如此

TextArea txt = new TextArea();
//Set background black
txt.setBackground(Color.BLACK); 
//Set Foreground(text) white
txt.setForeground(Color.WHITE); 

setForegroundandsetBackground方法属于JComponent/类,因此Component每个组件都可以访问,因为所有 Swing/AWT 组件在层次结构中的某个位置都将扩展这些类。

于 2012-07-22T17:24:03.910 回答