0
右のメニューからツリーのすべてのノードを選択するオプションを挿入します。 この機能は、標準のctrl-aを押すと実装されます。どのようにその機能をsimiluraですか?Javaツリー内のすべてのノードを選択
JTree tree = new JTree();
JPopupMenu popMenuTree = new JPopupMenu();
JMenuItem selectAll = new JMenuItem();selectAll.setText("SelectAll");
selectAll.setActionCommand("selectAll");
KeyStroke ctrlXKeyStroke = KeyStroke.getKeyStroke("control A");
selectAll.setAccelerator(ctrlXKeyStroke);
popMenuTree.add(selectAll);
はそんなに
メニューのショートカットを追加するだけです。 –
このコード行は動作しません... selectAll.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_A、ActionEvent.CTRL_MASK));私はあなたの提案を理解できません – oceano22