a
This commit is contained in:
@@ -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) {
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,2 +1,7 @@
|
||||
package P8;public class Launcher {
|
||||
package P8;
|
||||
|
||||
public class Launcher {
|
||||
public static void main(String[] args) {
|
||||
FontChangeApp.main(args);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user