ScalaSwinngのパネル間を移動する方法を知りたいです。私が持っている現在のコードは次のとおりです。
val top = new MainFrame {
title = "Predator and Prey Agent simulation"
val buttonExit = new Button {
text = "Exit"
//foo
}
val buttonStart = new Button {
top.visible = false
text = "Play"
}
buttonStartボタンで、別のクラスで定義した別のフレームに移動したいと思います。それをscalaにどの程度正確に実装しますか。上記のものから再帰値エラーが発生します。