如何在Java中使用Button Group Swing控件?

前端之家收集整理的这篇文章主要介绍了如何在Java中使用Button Group Swing控件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用NetBeans将单选按钮添加到按钮组?

一旦添加它们,我如何从按钮组中选择单选按钮?

解决方法

我强烈推荐阅读 this excellent tutorial.这是一篇文章代码摘录,满足您如何创建和添加按钮到ButtonGroup的问题:
JRadioButton birdButton = new JRadioButton(birdString);
birdButton.setSelected(true);

JRadioButton catButton = new JRadioButton(catString);

   //Group the radio buttons.
ButtonGroup group = new ButtonGroup();
group.add(birdButton);
group.add(catButton);

至于选择哪个项目,您基本上需要iterate through the items in the group calling isSelected.

原文链接:https://www.f2er.com/java/124359.html

猜你在找的Java相关文章