import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
class MyActionListener implements ActionListener {
public void actionPerformed(ActionEvent e) {
JButton source = (JButton) e.getSource();
String buttonText = source.getText();
JOptionPane.showMessageDialog(null, "You clicked" + buttonText);
}
}
public class ActionListenerTest1 {
public static void main(String[] args) {
JFrame.setDefaultLookAndFeelDecorated(true);
JDialog.setDefaultLookAndFeelDecorated(true);
JFrame frame = new JFrame("ActionListener Test 1");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton button = new JButton("Register");
button.addActionListener(new MyActionListener());
frame.getContentPane().add(button);
frame.pack();
frame.setVisible(true);
}
}
Friday, 26 January 2018
Related Posts:
ActionListner In java import java.awt.event.ActionEvent;import java.awt.event.ActionListener… Read More
Button Action Listner in java import java.awt.event.*;import java.awt.*;import javax.swing.*;public … Read More
Button action listnr example 2 in java import java.awt.BorderLayout;import java.awt.Container;import java.awt… Read More
Action listner and area in javaimport javax.swing.*;import java.awt.*;import java.awt.event.*;public … Read More
0 comments: