gpt4 book ai didi

java - 使用swing在java中为JButton创建热键

转载 作者:搜寻专家 更新时间:2023-11-01 00:59:42 26 4
gpt4 key购买 nike

我使用以下代码为使用 swing 的 java 表单创建热键。如果我按 ALT+N、ALT+R、ALT+1、ALT+2,光标将移动到正确的文本字段,然后我在相应的文本字段中输入值。它工作正常。我的问题是,我已经以这种形式保存并退出 JButtons。我按 CTRL+S 意味着将同时选择保存按钮如果我按 CTRL+X 意味着将选择退出按钮。如何为 JButton 创建助记符?如何使用以下代码执行 CTRL+S、CTRL+X?

提前致谢。

package hotkeys;
import java.awt.event.*;
import javax.swing.*;
import java.net.*;
public class hotkey extends JFrame {
public static void main(String arg[]) {
JLabel Name = new JLabel("Name");
JTextField tf1 = new JTextField(20);
Name.setLabelFor(tf1);
Name.setDisplayedMnemonic('N');


JLabel Regno = new JLabel("RegNO");
JTextField tf2 = new JTextField(20);
Regno.setLabelFor(tf2);
Regno.setDisplayedMnemonic('R');

JLabel Mark1 = new JLabel("Mark1");
JTextField tf3 = new JTextField(20);
Mark1.setLabelFor(tf3);
Mark1.setDisplayedMnemonic('1');

JLabel Mark2 = new JLabel("Mark2");
JTextField tf4 = new JTextField(20);
Mark2.setLabelFor(tf4);
Mark2.setDisplayedMnemonic('2');


JButton b1 = new JButton("Save");
JButton b2 = new JButton("eXit");


JFrame f = new JFrame();
JPanel p = new JPanel();

p.add(Name);
p.add(tf1);
p.add(Regno);
p.add(tf2);
p.add(Mark1);
p.add(tf3);
p.add(Mark2);
p.add(tf4);
p.add(b1);
p.add(b2);

f.add(p);
f.setVisible(true);
f.pack();
}
}

最佳答案

您需要在按钮的组件输入映射中注册一个键绑定(bind)。在代码中(重复你在之前的问题中被告知要做的事情的微妙变体:-)

// create an Action doing what you want
Action action = new AbstractAction("doSomething") {

@Override
public void actionPerformed(ActionEvent e) {
System.out.println("triggered the action");
}

};
// configure the Action with the accelerator (aka: short cut)
action.putValue(Action.ACCELERATOR_KEY, KeyStroke.getKeyStroke("control S"));

// create a button, configured with the Action
JButton toolBarButton = new JButton(action);
// manually register the accelerator in the button's component input map
toolBarButton.getActionMap().put("myAction", action);
toolBarButton.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(
(KeyStroke) action.getValue(Action.ACCELERATOR_KEY), "myAction");

关于java - 使用swing在java中为JButton创建热键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8588145/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com