Skip to content

Instantly share code, notes, and snippets.

@aalmiray
Created August 2, 2009 22:55
Show Gist options
  • Save aalmiray/160241 to your computer and use it in GitHub Desktop.
Save aalmiray/160241 to your computer and use it in GitHub Desktop.
application(title:'fx',
pack:true,
locationByPlatform:true,
iconImage: imageIcon('/griffon-icon-48x48.png').image,
iconImages: [imageIcon('/griffon-icon-48x48.png').image,
imageIcon('/griffon-icon-32x32.png').image,
imageIcon('/griffon-icon-16x16.png').image]) {
gridLayout(cols: 1, rows: 3)
textField(id: "t1", columns: 20)
textField(editable: false, text: bind{t1.text})
fxswingScene {
fxtextBox(columns: 20, id: "fxt")
}
noparent {
bean(fxt, text: bind{t1.text})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment