Chinaunix首页 | 论坛 | 博客
  • 博客访问: 23632
  • 博文数量: 20
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 207
  • 用 户 组: 普通用户
  • 注册时间: 2013-08-26 09:51
文章分类

全部博文(20)

分类: Java

2013-11-03 15:35:21


  1. JPanel panel = new JPanel();
  2. int count = panel.getComponentCount();
  3. for (int i = 0; i < count; i++) {
  4.      Object obj = panel.getComponent(i);
  5.      if (obj instanceof JButton) {
  6.       JButton button = (JButton) obj;
  7.      }
  8. }

阅读(297) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~