我正在用Java编写一个简单的绘图程序,我有一个MenuBar(不是JMenuBar)来选择要绘制的形状和颜色。我想设置键盘快捷键以在Rectangle,Oval和Line之间进行选择。我知道我可以将MenuShortcut用于MenuItems,但这对CheckBoxMenuItems不起作用。我有什么想法可以做到这一点吗?
答案 0 :(得分:1)
考虑到用户将一次绘制其中一个元素(例如什么是椭圆线?),这可能需要JRadioButtonMenuItem
。
JRadioButtonMenuItem
有加速器。 E.G。
import javax.swing.*;
public class RadioMenuDemo {
public static void main(String[] args) {
Runnable r = new Runnable() {
@Override
public void run() {
JPanel gui = new JPanel();
JMenuBar mb = new JMenuBar();
JMenu shapes = new JMenu("Draw");
mb.add(shapes);
ButtonGroup bg = new ButtonGroup();
shapes.setMnemonic('D');
JRadioButtonMenuItem line = new JRadioButtonMenuItem("Line");
line.setAccelerator(KeyStroke.getKeyStroke("L"));
shapes.add(line);
bg.add(line);
JRadioButtonMenuItem oval = new JRadioButtonMenuItem("Oval");
oval.setAccelerator(KeyStroke.getKeyStroke("O"));
shapes.add(oval);
bg.add(oval);
JRadioButtonMenuItem rect = new JRadioButtonMenuItem("Rectangle");
rect.setAccelerator(KeyStroke.getKeyStroke("R"));
shapes.add(rect);
bg.add(rect);
JFrame f = new JFrame("Radio menu items");
f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
f.setJMenuBar(mb);
f.pack();
f.setLocationByPlatform(true);
f.setVisible(true);
}
};
SwingUtilities.invokeLater(r);
}
}