Guest User

Untitled

a guest
Apr 19th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. import javafx.scene.*;
  2. import javafx.scene.shape.*;
  3. import javafx.scene.paint.*;
  4. import javafx.stage.*;
  5.  
  6. public class MainStage extends TestAppInterface {
  7. public override function showStage() : Void {
  8. Stage {
  9. title: "TestApp"
  10. width: 400
  11. height: 300
  12. scene: Scene {
  13. content: [
  14. Circle {
  15. centerX: 80
  16. centerY: 80
  17. radius: 50
  18. fill: Color.BLUE
  19. stroke: Color.BLACK
  20. strokeWidth: 2
  21. }
  22. ]
  23. }
  24. }
  25. }
  26. }
Add Comment
Please, Sign In to add comment