JavaFX TextArea 的 onSelectionChange 方法

huangapple go评论80阅读模式
英文:

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) -> {
    // ...
});

huangapple
  • 本文由 发表于 2020年10月24日 00:55:04
  • 转载请务必保留本文链接:https://go.coder-hub.com/64504249.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定