标签: java swing jtextpane
我想更改JTextPane中所选文字的大小 但是当我点击JComboBox选择尺寸时,选择会消失,所以我无法改变尺寸。如何保持这种选择?
JTextPane
JComboBox
答案 0 :(得分:3)
实际上选择仍然存在。它只是被隐藏了,因为JTextPane失去了焦点。
您可以调用pane.getCaret().setSelectionVisible(true);使其可见,并使用setSelectionStart()/ setSelectionEnd()来定义所选片段。
pane.getCaret().setSelectionVisible(true);