Alguém ja tentou usar em accelerator em JMenuItem, em um JPopUpMenu?
Aqui ele não está processando o accelerator.
Procurei alguma coisa na internet, dizendo que isto era um Bug, mas já havia sido corrigido. Alguém consegue usar normalmente?
[code]import javax.swing.UIManager;
/**
*
-
@author epmallmann
*/
public class Teste extends javax.swing.JFrame {public Teste() {
initComponents();
setLocationRelativeTo(null);
}//
private void initComponents() {
jPopupMenu1 = new javax.swing.JPopupMenu();
jMenuItem1 = new javax.swing.JMenuItem();
jPanel1 = new javax.swing.JPanel();
jLabel1 = new javax.swing.JLabel();
jTextField1 = new javax.swing.JTextField();jMenuItem1.setAccelerator(javax.swing.KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_F11, 0)); jMenuItem1.setText("Teste"); jMenuItem1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jMenuItem1ActionPerformed(evt); } }); jPopupMenu1.add(jMenuItem1); getContentPane().setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout()); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); jPanel1.setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout()); jPanel1.setComponentPopupMenu(jPopupMenu1); jLabel1.setText("jLabel1"); jPanel1.add(jLabel1, new org.netbeans.lib.awtextra.AbsoluteConstraints(10, 10, -1, -1)); jTextField1.setComponentPopupMenu(jPopupMenu1); jPanel1.add(jTextField1, new org.netbeans.lib.awtextra.AbsoluteConstraints(50, 10, 140, -1)); getContentPane().add(jPanel1, new org.netbeans.lib.awtextra.AbsoluteConstraints(0, 0, 400, 80)); pack();
}//
private void jMenuItem1ActionPerformed(java.awt.event.ActionEvent evt) {
System.out.println(“aqui”);
}public static void main(String args[]) {
try{
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
}catch(Exception e){} java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new Teste().setVisible(true); } });
}
// Variables declaration - do not modify
private javax.swing.JLabel jLabel1;
private javax.swing.JMenuItem jMenuItem1;
private javax.swing.JPanel jPanel1;
private javax.swing.JPopupMenu jPopupMenu1;
private javax.swing.JTextField jTextField1;
// End of variables declaration
}[/code]