如何为JMenu
添加动作侦听器(不适用于JMenuItem
)?我想点击此菜单打开新窗口。非常感谢你!
答案 0 :(得分:2)
您可以尝试这个,然后可以向JMenu添加动作侦听器。
menu.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
//Execute when JMenu is pressed
System.out.println("You clicked the JMenu");
}
});