我无法在 Scala 编程语言中创建包含单选按钮的 ButtonGroup。我正在使用的代码如下:
val buttongroup = new ButtonGroup {
buttons += new RadioButton("One")
buttons += new RadioButton("Two")
}
我用于显示按钮组的代码位于 BorderPanel 中:
layout += new BoxPanel(Orientation.Vertical) {
buttongroup
} -> BorderPanel.Position.West
但是,什么都没有显示...我已经咨询了 API,但我不确定出了什么问题!