Swing/TreeClearSelection のバックアップ(No.1)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/TreeClearSelection へ行く。
- 1 (2010-12-06 (月) 14:44:47)
- 2 (2010-12-06 (月) 18:11:37)
- 3 (2010-12-17 (金) 21:19:12)
- 4 (2010-12-18 (土) 02:55:07)
- 5 (2012-12-25 (火) 11:25:26)
- 6 (2013-10-11 (金) 12:53:36)
- 7 (2015-02-05 (木) 14:41:21)
- 8 (2016-09-10 (土) 23:43:03)
- 9 (2017-10-25 (水) 15:44:05)
- 10 (2019-04-01 (月) 18:17:21)
- 11 (2019-10-28 (月) 20:49:57)
- 12 (2021-05-22 (土) 04:40:38)
TITLE:JTreeの選択状態を解除する
Posted by terai at 2010-12-06
JTreeの選択状態を解除する
JTreeでノード以外の領域をマウスでクリックした場合、選択状態を解除します。
- &jnlp;
- &jar;
- &zip;
#screenshot
サンプルコード
tree.addMouseListener(new MouseAdapter() {
public void mousePressed(MouseEvent e) {
JTree tree = (JTree)e.getSource();
if(tree.getRowForLocation(e.getX(), e.getY())<0) {
tree.clearSelection();
}
}
});
解説
上記のサンプルでは、JTree#getRowForLocation(...)メソッドを使用して、JTreeのノード以外のポイントがクリックされたかどうかを判断しています。ノードの選択解除自体は、JTree#clearSelection()が使用できます。
参考リンク
- http://java.sun.com/javase/ja/6/docs/ja/api/javax/swing/JTree.html JTree (Java Platform SE 6)のサンプルコード