0

我想将 KeyStrokes 添加到 CheckBoxes 组,所以当用户点击 1 时,击键将选择/取消选择第一个 JCheckBox。

我已经制作了这部分代码,但它不起作用,有人能指出我正确的方向吗?

    for (int i=1;i<11;i++)
     {
           boxy[i]=new JCheckBox();
           boxy[i].getInputMap().put(KeyStroke.getKeyStroke((char) i),("key_"+i));  
           boxy[i].getActionMap().put(("key_"+i), new AbstractAction() {  
                 public void actionPerformed(ActionEvent e) {  
                     JCheckBox checkBox = (JCheckBox)e.getSource();  
                     checkBox.setSelected(!checkBox.isSelected());  
         }});
          pnlOdpovede.add(boxy[i]);
       }
4

1 回答 1

2

问题是您使用 WHEN_FOCUSED 类型的 checkBox 的 inputMap 注册了绑定:它们仅对在 keyPressed 时聚焦的特定 checkBox 有效。

假设您想要独立于 focusOwner 切换选定状态,另一种方法是使用复选框的父容器注册 keyBindings 并添加一些逻辑来查找要切换其选择状态的组件:

// a custom action doing the toggle
public static class ToggleSelection extends AbstractAction {

    public ToggleSelection(String id) {
        putValue(ACTION_COMMAND_KEY, id);
    }

    @Override
    public void actionPerformed(ActionEvent e) {
        Container parent = (Container) e.getSource();
        AbstractButton child = findButton(parent);
        if (child != null) {
            child.setSelected(!child.isSelected());
        }
    }

    private AbstractButton findButton(Container parent) {
        String childId = (String) getValue(ACTION_COMMAND_KEY);
        for (int i = 0; i < parent.getComponentCount(); i++) {
            Component child = parent.getComponent(i);
            if (child instanceof AbstractButton && childId.equals(child.getName())) {
                return (AbstractButton) child;
            }
        }
        return null;
    }

}

// register with the checkbox' parent
for (int i=1;i<11;i++)  {
       String id = "key_" + i;
       boxy[i]=new JCheckBox();
       boxy[i].setName(id);
       pnlOdpovede.getInputMap(WHEN_ANCESTOR_OF_FOCUSED_COMPONENT)
           .put(KeyStroke.getKeyStroke((char) i), id);  
       pnlOdpovede.getActionMap().put(id, new ToggleSelection(id));
       pnlOdpovede.add(boxy[i]);
 }

顺便说一句:假设您的复选框具有操作(它们应该 :-),则 ToggleAction 可以触发这些操作,而不是手动切换选择。在最近的一个线程中使用了这种方法

于 2013-01-22T16:48:12.767 回答