Wrapping HTML text in a JEditorPane inside a JScrollPane

前端 未结 2 941
生来不讨喜
生来不讨喜 2020-12-16 07:50

In an application, I\'m using uneditable JEditorPanes as a sort of a generic UI widget that can display somewhat complex content (HTML will do the trick), wrap text lines an

2条回答
  •  隐瞒了意图╮
    2020-12-16 08:33

    // JPanel panel = new JPanel();
    ScrollablePanel panel = new ScrollablePanel();
    panel.setScrollableWidth( ScrollablePanel.ScrollableSizeHint.FIT );
    

    See Scrollable Panel for the class and an explanation on how the class works.

提交回复
热议问题