1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import java.applet.Applet; import java.awt.Color; import java.awt.Graphics; public class WhiteBackgroundApplet extends Applet { public void init() { // // Here we change the default gray color background of an applet to // white background. // setBackground(Color.WHITE); } public void paint(Graphics g) { g.setColor(Color.BLACK); g.drawString("Applet background example", 0, 50); } } |