Skip to content

Instantly share code, notes, and snippets.

@rabitarochan
Created July 26, 2012 02:42
Show Gist options
  • Save rabitarochan/3179946 to your computer and use it in GitHub Desktop.
Save rabitarochan/3179946 to your computer and use it in GitHub Desktop.
JavaFXをScala風にこんな感じで書けたらいいな。
pane: ActionPane {
prefHeight = 400.0
prefWidth = 600.0
children {
hbox: HBox {
alignment = "CENTER"
prefHeight = 50.0
prefWidth = 572.0
spacing = 20.0
children {
l: Label { style = "-fx-font-size: 24;", text = "Label" }
tf: TextField { style = "-fx-font-size: 24;", text = "TextField" }
btn: Button { style = "-fx-font-size: 24;", text = "Load" }
}
}
tb: TabView { prefHeight = 302.0, prefWidth = 572.0 }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment