【发布时间】:2015-01-29 09:10:58
【问题描述】:
我有以下代码:
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,但没有成功。
尝试谷歌但没有找到解决方案。有什么建议吗?
【问题讨论】:
-
添加了一个可能的解决方案
标签: javafx radio-button gridpane