我有以下代码:
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
但没有奏效。尝试谷歌但没有找到解决方案。有什么建议么?