How to have a Scrollable JTextPane?

前端 未结 5 2067
余生分开走
余生分开走 2021-01-07 22:22

I would like to have a JTextPane that have scroll bar, how can I do so ? Thanks.

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-07 22:49

    Here is the code to add a scrollbar to the TextBox

    JEditorPane edtDTWinfo = new JEditorPane();
    edtDTWinfo.setEditable(false);
    edtDTWinfo.setBorder(new LineBorder(Color.ORANGE, 2));
    edtDTWinfo.setForeground(Color.BLUE);
    JScrollPane spEditor = new JScrollPane(edtDTWinfo,
            JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
            JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
    spEditor.setBounds(0, 0, 200, 300);
    

    Add component "spEditor" to the JPanel

提交回复
热议问题