...
| Code Block |
|---|
import groovyx.javafx.GroovyFX
import groovyx.javafx.SceneGraphBuilder
GroovyFX.start({
def sg = new SceneGraphBuilder();
sg.stage(
title: "HBox Example (Groovy)",
width: 650, height:450,
visible: true,
) {
scene(fill: lightgreen ) {
hbox(spacing: 10 ) {
button(text: "ONE")
button(text: "TWO")
button(text: "THREE")
button(text: "FOUR")
}
}
}
});
|