English 中文(简体)
在不同的标签下为按钮设置相同的密钥快捷键
原标题:Setting the same key shortcuts for buttons under different tabs

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)

问题回答

使用

KeyStroke 绑定为按钮 s doClick () 具有视觉和听觉反馈的优势;但是,正如你所观察到的, doClick () 并不是一个 Action 。 相反,创建一个 Action ,引用给定按钮s doClick () 方法,并将其绑在所需的 KeyStroke 上,正如此 所显示的, https://sites.google.com/site/drjohnbmatthews/keypad-panel" rel=“nofol”>>>example





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签