Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的视图中有一个 TreeViewer。每当我按下一个按钮(比如 s)时,查看器都会选择树中以这个字母开头的第一个项目(比如 stackoverflow)。有没有办法禁用这种行为?
谢谢你。
限制 Tree 上的所有关键事件看起来很有希望,但您会松散导航树结构并在树节点和所有其他功能上展开/折叠。
tree.addKeyListener(new KeyAdapter() { @Override public void keyPressed(KeyEvent e) { e.doit = false; } });