当前位置: 代码迷 >> Java相关 >> 怎样判断一个buttongroup中那个JradioButton被选中呢?
  详细解决方案

怎样判断一个buttongroup中那个JradioButton被选中呢?

热度:878   发布时间:2006-12-26 23:42:18.0
怎样判断一个buttongroup中那个JradioButton被选中呢?
rt
搜索更多相关的解决方案: JradioButton  buttongroup  判断  

----------------解决方案--------------------------------------------------------

先得到此按钮组里面的所有按钮,然后一个个判断是否为选中状态

[CODE]首先假设ButtonGroup对象名字叫bg;


Enumeration<AbstractButton> en=bg.getElements();
while(en.hasMoreElements()){
AbstractButton ab=en.nextElement();
if(ab.isSelected()){
//说明这个按钮选中了
}

}[/CODE]


----------------解决方案--------------------------------------------------------
有没有什么方法直接返回一个值可以判断?
----------------解决方案--------------------------------------------------------
没有,ButtonGroup只提供了这些方法

----------------解决方案--------------------------------------------------------