gpt4 book ai didi

Java Swing : Why drag and drop in JFrame will trigger the "Ctrl+C" accelerator?

转载 作者:搜寻专家 更新时间:2023-11-01 03:44:10 24 4
gpt4 key购买 nike

我创建了一个 JFrame 并在其中放置了一个 JMenuBar,添加了一个带有“Ctrl+C”快捷键的“复制”菜单项。完整的源代码贴在下面。当我在 JFrame 中进行拖放时,我可以看到“Ctrl+C”加速器被触发(因为 ActionEvent 打印在控制台中),就像您在键盘上按 Ctrl+C 一样。

我认为这是很奇怪的行为,我不明白为什么鼠标操作会触发该热键。是错误吗?

public class Test {
public static void main(String[] args) {
final JFrame jf = new JFrame("Test");
final JMenuBar menuBar = new JMenuBar();
jf.setJMenuBar(menuBar);
final JMenu menu = new JMenu("Edit");
menuBar.add(menu);
final JMenuItem copyItem = new JMenuItem("Copy");
copyItem.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
System.out.println(e);
}
});
copyItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_C, Event.CTRL_MASK));
menu.add(copyItem);
jf.setPreferredSize(new Dimension(400, 300));
jf.pack();
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jf.setVisible(true);
}
}

最佳答案

几天前我遇到了类似的问题。但我已经通过更改 KeyEvent.CTRL_DOWN_MASKEvent.CTRL_MASK 参数解决了这个问题。我的最终代码如下:

   sousMenu = new JMenuItem("Nouveau", KeyEvent.VK_N);
sousMenu.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_N,
KeyEvent.CTRL_DOWN_MASK));
sousMenu.setName(Modele.ID_NOUVEAU);
sousMenu.addActionListener(this);
menu.add(sousMenu);
/** Modele is a singleton class with my constants
* My frame class implements ActionListener
* The KeyEvent.VK_N parameter in the constructor sets the mnemonic
*/

我不知道这是否是一个众所周知的错误,但我的选择在我的情况下没有任何问题。

祝你好运!

关于Java Swing : Why drag and drop in JFrame will trigger the "Ctrl+C" accelerator?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6728062/

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