JTextPane line wrapping

后端 未结 2 1712
伪装坚强ぢ
伪装坚强ぢ 2020-12-03 18:08

Unlike JTextArea, JTextPane has no option to turn line wrapping off. I found one solution to turning off line wrapping in JTextPanes,

2条回答
  •  被撕碎了的回忆
    2020-12-03 18:32

    See No Wrap Text Pane. Here's the code included from the link.

    JTextPane textPane = new JTextPane();
    JPanel noWrapPanel = new JPanel( new BorderLayout() );
    noWrapPanel.add( textPane );
    JScrollPane scrollPane = new JScrollPane( noWrapPanel );
    

提交回复
热议问题