From 4a77c1cf54175d7714b288197160b46c700a9117 Mon Sep 17 00:00:00 2001 From: sowgro Date: Wed, 10 May 2023 08:12:35 -0400 Subject: add gui classes --- src/main/jfxTest.java | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 src/main/jfxTest.java (limited to 'src/main/jfxTest.java') diff --git a/src/main/jfxTest.java b/src/main/jfxTest.java deleted file mode 100644 index 6cc7f93..0000000 --- a/src/main/jfxTest.java +++ /dev/null @@ -1,49 +0,0 @@ -package main; - -import javafx.application.Application; -import javafx.event.ActionEvent; -import javafx.event.EventHandler; -import javafx.scene.Scene; -import javafx.scene.control.Button; -import javafx.scene.effect.BlurType; -import javafx.scene.effect.DropShadow; -import javafx.scene.layout.GridPane; -import javafx.scene.layout.StackPane; -import javafx.scene.paint.Color; -import javafx.scene.shape.Rectangle; -import javafx.scene.text.Font; -import javafx.scene.text.FontWeight; -import javafx.scene.text.Text; -import javafx.stage.Stage; - -public class jfxTest extends Application { - public static void main(String[] args) { - launch(args); - } - - @Override - public void start(Stage primaryStage) { - primaryStage.setTitle("Title"); - Button btn = new Button(); - btn.setText("Say 'Hello World'"); - btn.setOnAction(new EventHandler() { - - @Override - public void handle(ActionEvent event) { - System.out.println("Hello World!"); - } - }); - - Block rect = new Block(Color.RED); - - - - GridPane root = new GridPane(); - root.gridLinesVisibleProperty(); - root.add(rect,1,0); - root.add(btn,0,1); - primaryStage.setScene(new Scene(root, 300, 250)); - primaryStage.show(); - - } -} \ No newline at end of file -- cgit v1.2.3