GUIアプリを作るのにSwingを使ってみる
結構簡単そう。
import scala.swing._ object FirstSwingApp extends SimpleSwingApplication { def top = new MainFrame { title = "First Swing App" contents = new Button { text = "Click me" } } }
GUIアプリを作るのにSwingを使ってみる
結構簡単そう。
import scala.swing._ object FirstSwingApp extends SimpleSwingApplication { def top = new MainFrame { title = "First Swing App" contents = new Button { text = "Click me" } } }