Skip to content

Instantly share code, notes, and snippets.

@sng2c
Last active December 27, 2015 16:09
Show Gist options
  • Save sng2c/7352517 to your computer and use it in GitHub Desktop.
Save sng2c/7352517 to your computer and use it in GitHub Desktop.
import scala.swing._
import scala.swing.event._
object ButtonApp extends SimpleSwingApplication {
def top = new MainFrame {
title = "My Frame"
contents = new GridPanel(2, 2) {
hGap = 3
vGap = 3
contents += new Button {
text = "Press Me!"
reactions += {
case ButtonClicked(_) => text = "Hello Scala"
}
}
}
size = new Dimension(300, 80)
}
}