I have a frame which is multi tabbed and I have to set shortcuts to certain buttons under different tabs, but they have to use the same key. For example:
Under tab1, I have a "Do that" button which should react to F1 key, but if I were to switch to tab2, I should have a "Do this" button which should also react to F1 button but the action on tab1 shouldn t be fired.
我尝试将 keyliber
添加到制表符/密钥/黑帮中,但是,如果我按 F1 键,它仍然是第一个被开除的动作。
但我认为是因为我使用一个控制关键事件的开关,例如 case KeyEvent.VK_F1:my button1.do kick ();
那么我该如何在不同的标签下将动作分开反应呢?是否有办法让焦点化的标签或其它东西成为例呢?
请注意
编辑: Swing 动作的一些代码 :
private class SwingAction extends AbstractAction {
public SwingAction() {
putValue(NAME, "mybutton");
putValue(SHORT_DESCRIPTION, "Some short description");
}
public void actionPerformed(ActionEvent e) {
mybutton.getInputMap().put(KeyStroke.getKeyStroke("F1"),"pressed");
mybutton.getActionMap().put("pressed",mybutton.doClick());
}
}
我得到:
The method put(Object, Action) in the type ActionMap is not applicable for the arguments (String, void) error, ( sorry a Java/Swing newbie here)