英文:
JavaFX TextArea onSelectionChange method
问题
我可以以某种方式为我的JavaFX Textarea 实现一个onSelectionChange
方法吗?我希望在选择更改事件上触发一些代码,但看起来它并没有这样的方法。使用监听器实现这个有可能吗?
英文:
Can I somehow implement a onSelectionChange
method for my JavaFX Textarea?
I want some code to fire on the selection change event but looks like, it doesn't have such a method. Is it possible to implement it with listeners?
答案1
得分: 3
只需向文本区域的 选定文本 添加一个监听器:
textArea.selectedTextProperty().addListener((obs, oldSelection, newSelection) -> {
// ...
});
英文:
Just add a listener to the text area's selected text:
textArea.selectedTextProperty().addListener((obs, oldSelection, newSelection) -> {
// ...
});
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论