1
我想知道如何在scala swinng中的面板之間導航。我現在的代碼是:在scala中的面板之間導航
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中實現它。我從上面得到了一個遞歸值錯誤。