Code:
/*
<applet
code="SetBackgroundColorExample.class" width=200 height=200>
</applet>
*/
import java.applet.Applet;
import java.awt.*;
public class SetBackgroundColorExample extends Applet
{
public void paint(Graphics g)
{
/*
*Set background color of an applet using
*void SetBackground(Color c)method
*/
setBackground(Color.red);
}
}
Comments
Post a Comment