次のコードがあります。
GridPane gp = new GridPane();
// filling GridPane with other nodes...
RadioButton maschio = new RadioButton("M");
RadioButton femmina = new RadioButton("F");
final ToggleGroup tg = new ToggleGroup();
maschio.setToggleGroup(tg);
femmina.setToggleGroup(tg);
gp.add(tg, 1, 3);
最後の行に次のようなエラーが表示されました: ToggleGroup cannot be converted to Node
.
私に何ができる?私も試してみましVbox, Hbox
たが、うまくいきませんでした。Google を試しましたが、解決策が見つかりませんでした。助言がありますか?