Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序中有两个 TextAreas,当我移动其中一个滚动条时,我想让滚动条同步滑动。但是我在 JavaFX 2.2 中找不到这样做的方法。
这对我有用:
TextArea ta1 = new TextArea(), ta2 = new TextArea(); ta1.scrollTopProperty().bindBidirectional(ta2.scrollTopProperty());
通常情况下,您可以在 TextArea 上应用 lookupAll(String) 操作来查找 TextArea 内的滚动条,并双向绑定它们的值。