menu Aplet Java

0
  1. Aplet zawierający menu z opcją info wyświetlającą okno dialogowe z Twoim imieniem i nazwiskiem.
    Oto co mam

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ButtonGroup;
import javax.swing.JCheckBoxMenuItem;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JRadioButtonMenuItem;

public class MenuExp extends JFrame {

public MenuExp() {
    
    setTitle("Menu Example");
    setSize(150, 150);
    
    // Creates a menubar for a JFrame
    JMenuBar menuBar = new JMenuBar();
    
    // Add the menubar to the frame
    setJMenuBar(menuBar);
    
    // Define and add two drop down menu to the menubar
    JMenu fileMenu = new JMenu("File");
    JMenu infoMenu = new JMenu("Info");
    menuBar.add(fileMenu);
    menuBar.add(infoMenu);
  
    
    // Create and add simple menu item to one of the drop down menu
    JMenuItem newAction = new JMenuItem("New");
    JMenuItem openAction = new JMenuItem("Open");
    JMenuItem exitAction = new JMenuItem("Exit");
    JMenuItem cutAction = new JMenuItem("Cut");
    JMenuItem copyAction = new JMenuItem("Copy");
    JMenuItem informacjaAction = new JMenuItem("informacja");
    
    // Create and add CheckButton as a menu item to one of the drop down
    // menu
    JCheckBoxMenuItem checkAction = new JCheckBoxMenuItem("Check Action");
    // Create and add Radio Buttons as simple menu items to one of the drop
    // down menu
    JRadioButtonMenuItem radioAction1 = new JRadioButtonMenuItem(
            "Radio Button1");
    JRadioButtonMenuItem radioAction2 = new JRadioButtonMenuItem(
            "Radio Button2");
    // Create a ButtonGroup and add both radio Button to it. Only one radio
    // button in a ButtonGroup can be selected at a time.
    ButtonGroup bg = new ButtonGroup();
            infoMenu.addSeparator();
  infoMenu.add(informacjaAction);
    // Add a listener to the New menu item. actionPerformed() method will
    // invoked, if user triggred this menu item
          ;
}
public static void main(String[] args) {
    MenuExp me = new MenuExp();
    me.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    me.setVisible(true);
}

}
i problem mam że jak klikam info i wybieram informacja to chcĘ aby wyskakiwało okienko z autorem

0

Po pierwsze, to nie jest aplet.
Po drugie, formatuj kod.
Po trzecie, nie wystarczy że chcesz. Musisz jeszcze napisać odpowiedni kod.

0

po kolejne musisz utworzyć zdarzenie wywołujące masz tu fragment z mojej aplikacji

mOProgramie = new JMenuItem("O Programie");
mOProgramie.addActionListener(this);
menuPomoc.add(mOProgramie);

public void actionPerformed(ActionEvent e){

if (z==mOProgramie||z==Pomoc)
JOptionPane.showMessageDialog(this,"....","Uwaga", JOptionPane.INFORMATION_MESSAGE);
}

1 użytkowników online, w tym zalogowanych: 0, gości: 1