/*
Change Background Color Of Label Example
This java example shows how to change background color of a label using
setBackground method.
*/
import java.applet.Applet;
import java.awt.Color;
import java.awt.Label;
/*
<applet code="ChangeBackgroundColor" width=100 height=200>
</applet>
*/
public class ChangeBackgroundColor extends Applet{
public void init(){
//create labels
Label label1 = new Label("Label 1");
Label label2 = new Label("Label 2");
//add labels
add(label1);
add(label2);
/*
* To set background color of a label use
* void setBackground(Color c)
* method.
*/
label1.setBackground(Color.green);
label2.setBackground(Color.red);
}
}
Example Output

Bookmark/Search this post with: