我想要更改光標鼠標移動到JTree
組件上的手形光標僅當列出的元素,而不是整個組件。以下代碼適用於Jlist
組件。我想同樣爲JTree
,但JTree
沒有getCellBound()
。有沒有其他方法?想要改變鼠標移動JTree列出的元素
final JList list = new JList(new String[] {"a","b","c"});
list.addMouseMotionListener(new MouseMotionListener() {
@Override
public void mouseMoved(MouseEvent e) {
final int x = e.getX();
final int y = e.getY();
// only display a hand if the cursor is over the items
final Rectangle cellBounds = list.getCellBounds(0, list.getModel().getSize() - 1);
if (cellBounds != null && cellBounds.contains(x, y)) {
list.setCursor(new Cursor(Cursor.HAND_CURSOR));
} else {
list.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
}
}
@Override
public void mouseDragged(MouseEvent e) {
}
});
爲了更好地幫助越早,張貼[SSCCE(HTTP:// sscce.org/)。 –
我不明白問題所在。它似乎爲我工作。而你的標題說「JTree」,但你的代碼說「JList」:它是哪一個? –
@Guillaume Polet:忘記代碼,只需要當光標在顯示的元素上移動而不是當光標在JTree組件的任何部分上時,只需要Jtree組件上的手形光標,而默認情況下它會在JTree –