Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public class JavaFX extends Application {
  2. @Override
  3. public void start(Stage stage)
  4. {
  5. StackPane okno = new StackPane();
  6. Scene scena = new Scene(okno, 800, 600);
  7. stage.setTitle("Nazwa");
  8. stage.setScene(scena);
  9. stage.show();
  10. }
  11. public static void main(String[] args){
  12. launch(args);
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement