import java.awt.*; import java.awt.event.*; public class ex15_2 extends Frame implements ActionListener private Label 1; private TextField tf; public static void main(String[] args) ex15_2 obj15_2 = new ex15_2();
public ex15_2() setBackground(Color.gray); l = new Label("Welcom to the NCR Examination!"); Font font = new Font("TimesRoman",Font.BOLD,20); l.setFont(font); add("Center",l); Panel p = new Panel(); Button b = new Button("Left"); b.addActionListener(this); p.add(b); b = new Button("Center"); b.addActionListener(this); p.add(b); b = new Button("Right"); b.addActionListener(this); p.add(b); ________________; b = new Button("Exit"); b.addActionListener(this); p.add(b); p = new Panel(); tf = new TextField(40); p.add(tf); b = new Button("Set"); b.addActionListener(this); p.add(b); add("North",p); setSize(500,300); show();