Changing the mouse pointer in JtextPane

后端 未结 2 545
夕颜
夕颜 2021-01-21 00:05

I have a JTextPane which has the content type text/plain. I set some texts to that JTextPane and it contain some texts which display <

2条回答
  •  南方客
    南方客 (楼主)
    2021-01-21 00:32

    You could try this:

    pane.setCursor(new Cursor(Cursor.HAND_CURSOR));
    

    Where pane is your JTextPane.

提交回复
热议问题