我正在尝试让 JEditorPane 突出显示显示行的整个宽度。我尝试过的所有示例仅突出显示文本内容。例如,如果我有这样的内容:
---------------------------------
|Here is some text |
|some more text |
---------------------------------
在由上面的框表示的 JEditorPane 中,然后突出显示第一行仅突出显示“这里是一些文本”(表示在下面的 [ 和 ] 之间)。
---------------------------------
[Here is some text] |
|some more text |
---------------------------------
我希望它突出显示 JEditorPane 的整个宽度,如下所示:
---------------------------------
[Here is some text ]
|some more text |
---------------------------------
有没有办法做到这一点?