FontAndColorTest.java
Dosyayı İndir
package com.godoro.samples.awt;
import java.awt.*;
public class FontAndColorTest
extends Frame
{
public FontAndColorTest(){
TextArea area=new TextArea();
area.setBackground(Color.PINK);
area.setForeground(new Color(127,255,255));
area.setFont(new Font("Arial",Font.BOLD|Font.ITALIC,13));
add(area);
}
public static void main(String[] args){
FontAndColorTest test=new FontAndColorTest();
test.setBounds(new Rectangle(0,0,200,200));
test.setVisible(true);
}
}
Dosyayı İndir