GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

Tuesday, December 21, 2010

The First JavaFX Application

Here's a code of JavaFX:

import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.text.Text;
import javafx.scene.text.Font;


Stage {
    title: "The First JavaFX App"
    scene: Scene {
        width: 400
        height: 300
        content: [
            Text: {
                font: Font {
                    size: 30
                }
                x: 10
                y: 10
                content: "Application Content"
            }
        ]
    }
}

      
Share/Bookmark

No comments:

Post a Comment