Question: develop GUI with a push button event.Use a JTextArea to display which button was selected. import javax.swing.*; importjava.awt.*; importjava.awt.event.*; classActionsextendsJFrameimplementsActionListener { Create the components (textarea
develop GUI with a push button event.Use a JTextArea to display which button was selected.
importjavax.swing.*;
importjava.awt.*;
importjava.awt.event.*;
classActionsextendsJFrameimplementsActionListener
{
Create the components (textarea and buttons)
publicActions()
{
create the window (include a close operation)
create the container (include FlowLayout)
add the event listeners (button.addActionListener)
add the components
}
publicvoidactionPerformed(ActionEvent event)
{
add the event handler( if statements and event.getSource should be used here)
}
publicstaticvoidmain (String[] args)
{ Actions eg =newActions(); }
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
