这是我的 JButton,“我可以显示完整代码”,
JButton cor =new JButton();
cor.setText("Coor");
mainframe.add(cor);
window.getContentPane().add(mainframe);
window.pack();
window.setVisible(true);
我需要帮助,如何使用键盘激活此按钮,例如按“CTRL + A”
我有一些网站,发现我必须使用“键绑定”,但仍然可以知道如何去做。
请不要说这个话题是重复的,因为以前的话题对我没有帮助。
cor.getInputMap().put(KeyStroke.getKeyStroke("F2"),"act");
Action act = new AbstractAction() {
public void actionPerformed(ActionEvent e) {
PointerInfo a = MouseInfo.getPointerInfo();
Point b = a.getLocation();
int xC = (int) b.getX();
int yC = (int) b.getY();
textArea.replaceSelection("X-Coordinates:" + xC + " Y-Coordinates: " + yC + "\n");
}
};