All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.swing.test.ButtonApp.scala Maven / Gradle / Ivy

There is a newer version: 2.11.0-M7
Show newest version
package scala.swing
package test

import java.awt.Dimension

import swing._
import 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)
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy