是否可以使用与 JavaFX HTMLEditor 的绑定

Is it possible to use binding with JavaFX HTMLEditor

我在我的项目中使用 TextArea,并且我将 area.textProperty() 与某个对象的 属性 双向绑定。但是这个区域的文本实际上是 html 标记,所以 HTMLEditor 似乎是个不错的选择。但是我还没有找到任何方法将它与我的对象的 属性 绑定。如何实现?

这是不可能的,因为 HTMLEditor 没有扩展 TextInputControl and doesn't inherit the textProperty()

此外,setHtmlText(String) and getHtmlText()是publicAPI用于设置和获取控件内容的。没有public 属性 可用于文本绑定。