Create an JApplet with three Jbuttons


 

Create an JApplet with three Jbuttons

In this section, we are going to perform an action on three buttons using applet.

In this section, we are going to perform an action on three buttons using applet.

Create an JApplet with three Jbuttons

In this section, we have created an applet with three buttons Morning, Afternoon and Evening. On clicking these buttons, you will get the messages "Good Morning to you", "Good Afternoon to you" and "Good evening to you" respectively. We have used different colors to give different appearances to the messages.

Here is the code:

import java.applet.Applet; 
import java.awt.*; 
import java.awt.event.*;
   
public class SApplet extends Applet implements ActionListener {
   
   String st="";
   private Button morningButton, afternoonButton,eveningButton;
   
   public void init() { 
       morningButton = new Button("Morning")
      add(morningButton)
      morningButton.addActionListener(this)
      afternoonButton = new Button("Afternoon")
      add(afternoonButton)
      afternoonButton.addActionListener(this)
    eveningButton = new Button("Evening")
      add(eveningButton)
      eveningButton.addActionListener(this)
   }
      public void paint(Graphics g) {
      if(st.equals("Good Morning to you")){
  g.setColor(Color.red);
  g.setFont(new Font("Helvetica",Font.BOLD,20));
      }
      if(st.equals("Good Afternoon to you")){
  g.setColor(Color.blue);
  g.setFont(new Font("Arial",Font.BOLD,20));
      }
      if(st.equals("Good Evening to you")){
  g.setColor(Color.green);
  g.setFont(new Font("Book Antiqua",Font.BOLD,20));
      }
  g.drawString(st,100,200) 
   }
      public void actionPerformed(ActionEvent event) { 
      if (event.getSource() == morningButton) {
         st ="Good Morning to you";
     repaint();
    }
      if (event.getSource() == afternoonButton){ 
         st ="Good Afternoon to you";
         repaint();
    }
    if (event.getSource() == eveningButton) {
         st ="Good Evening to you";
         repaint()
    }
   

Ads