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.
我有一个带有滚动面板的主面板。
嵌入其中的是另外两个面板,一次只显示一个。我想在每个面板中捕获主面板的滚动事件。我在两个子面板中都有一个滚动事件,但只想触发一个。我该怎么做呢?
谢谢。
您可以向 ScrollPanel 添加任意数量的处理程序。
因此,在您要收听滚动事件的两个面板中:
HandlerRegistration handler = scrollPanel.addScrollHandler( new ScrollHandler() { @Override public void onScroll( ScrollEvent event ) { // ... your code } );