我想让我的TextArea
黑色而不是白色。我希望制作Window
全屏,整个屏幕都是黑色的TextArea
,并且有白色的字母。
我怎样才能做到这一点?
试试这个..
JTextArea txt = new JTextArea();
txt.setBackground(Color.BLACK);
txt.setForeground(Color.WHITE);
对于摆动组件
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);
setForeground
andsetBackground
方法属于JComponent
/类,因此Component
每个组件都可以访问,因为所有 Swing/AWT 组件在层次结构中的某个位置都将扩展这些类。