This commit is contained in:
2024-02-09 12:34:58 +01:00
parent 4d772a17cb
commit 0c970c22a7
98 changed files with 5330 additions and 20 deletions

View File

@@ -1,2 +1,25 @@
package P8;public class FontChangeApp {
package P8;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.scene.text.Font;
import javafx.scene.text.FontPosture;
import javafx.stage.Stage;
import javafx.geometry.*;
public class FontChangeApp extends Application {
private TextArea textArea;
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) {
}
}

View File

@@ -1,2 +1,7 @@
package P8;public class Launcher {
package P8;
public class Launcher {
public static void main(String[] args) {
FontChangeApp.main(args);
}
}