
When you're working on a worksheet, such as Word or Notepad and then you do right-click popup menu will appear that contains facilities Copy, Paste, and so forth.By using the API PopupMenu, you can create your own menu. Popup menu is defined by an event trigger that is able to control the program, and refined through MouseEvent method which is used to detect the mouse.Below are examples of program code:import java.awt.*;import java.awt.event.*;import java.applet.*;import javax.swing.*;public class PopUpMenu extends JPanel implements ActionListener{ PopupMenu popup; public PopUpMenu(){ MenuItem mi; popup=new PopupMenu("Edit"); mi=new MenuItem("Cut"); mi.addActionListener(this); popup.add(mi); mi=new MenuItem("Copy"); mi.addActionListener(this);...