Hallo allesamt
hab im Internet ein wenig rumgesucht und nach dem gefundenen Schema implementiert:
bt_Wuerfeln: ein JButton
Ich hoffe der Rest ist verständlich. Sonst bitte fragen.
Code
Action findAction = new AbstractAction() {
public void actionPerformed(ActionEvent e) {
System.out.println("HELLO WORLD!");
}
};
InputMap imap = bt_Wuerfeln.getInputMap(bt_Wuerfeln.WHEN_IN_FOCUSED_WINDOW);
ActionMap amap = bt_Wuerfeln.getActionMap();
KeyStroke ks = KeyStroke.getKeyStroke(KeyEvent.VK_W, InputEvent.CTRL_MASK);
imap.put(ks, "wuerfeln");
amap.put("wuerfeln", findAction);