获取容器中的所有 Swing 组件
我认为我们可以使用 jScrollPane.getComponents() 来获取 jscrollpane 的 awt 组件。 我的问题是:有没有办法以某种方式获取容器的摆动组件?
I think we can use jScrollPane.getComponents()
to get awt components of a jscrollpane.
My question is: is there a way to get swing components of a container some how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所有 Swing 组件都扩展 JComponent。
All Swing components extend JComponent.
您可以调用
getComponents
然后测试它是否是JComponent
的实例。一种方法是这样的:You can call
getComponents
then test to see if it is an instance ofJComponent
. A method would be like: