如何禁用 CONTROL+PAGE_UP 和 CONTROL+PAGE_DOWN 的默认行为JTabbedPane
?
user811773
问问题
291 次
2 回答
3
KeyBindings 用于内部命令(用于 Swing JComponents)
- 获取
ctrl PAGE_DOWN
/ctrl PAGE_UP
(在 JTabbedPane 的 API 中实现 KeyBindings)并设置为 null
于 2013-05-15T07:17:19.450 回答
2
以下代码禁用通常的行为
JTabbedPane jTabbedPane = new JTabbedPane();
KeyStroke ctrlTab = KeyStroke.getKeyStroke("ctrl PAGE_DOWN");
KeyStroke ctrlShiftTab = KeyStroke.getKeyStroke("ctrl PAGE_UP");
InputMap inputMap = jTabbedPane.getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
inputMap.put(ctrlTab, "none");
inputMap.put(ctrlShiftTab, "none");
于 2013-05-15T07:39:40.013 回答