Scroll Event of a JScrollPane(JScrollPane 的滚动事件)
问题描述
奇怪的是 JScrollPane 没有方法 addAdjustmentListener().然而,adjustmentListener 据说是与滚动条一起使用的.每当 JScrollPane 以任何一种方式滚动时,我都希望发生一些事情.如何实现这样的事情?
It's strange that JScrollPane doesn't have a method addAdjustmentListener(). Yet adjustmentListener is said to be used with scrollbars. I want something to happen whenever the JScrollPane is scrolled in either way. How to achieve such a thing?
推荐答案
为什么不获取实际的滚动条,然后向它们添加调整侦听器?JScrollBar 有一个名为 addAdjustmentListener() 的方法.
Why don't you get the actual scrollbars, and then add adjustment listeners to them? JScrollBar has a method called addAdjustmentListener().
您可以使用 getVerticalScrollBar() 和 getHorizontalScrollBar() 从 JScrollPane 中获取 JScrollBar
And you can use getVerticalScrollBar() and getHorizontalScrollBar() to get a JScrollBar from a JScrollPane
这篇关于JScrollPane 的滚动事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:JScrollPane 的滚动事件
基础教程推荐
- RabbitMQ:消息保持“未确认"; 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- Struts2 URL 无法访问 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
