Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Netbeans 7.2 でボタン グループをドラッグ アンド ドロップした後、そのボタン グループにラジオ ボタンを追加するにはどうすればよいですか?
Button Groupラジオボタンのプロパティにフィールドがあります。グループに追加するラジオボタンごとに、この値をボタングループの名前に設定します。
Button Group
Netbeans 8.0.1 では、以下を使用します。
ButtonGroup bG = new ButtonGroup(); bG.add(btn_1); bG.add(btn_2); bG.add(btn_3); bG.add(btn_4); ....