Updated
It came to my attention that the original sample using
setStyle("-fx-cursor:url('/images/pencil.png')");
which fire an exception, appears to be a bug:
Still, if to assign a custom cursor the CSS way, it needs to be done as shown below.
Original answer
When using custom CSS cursor, a non-URL fallback (one or more of the other values) must be at the end of the fallback list, i.e. auto
, so your code need to look like this:
//---------------------------------------------- ↓
setStyle("-fx-cursor:url('/images/pencil.png'),auto");
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…