import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.stage.Stage;
public class MinimalApp extends Application {
@Override
public void start(Stage stage) {
stage.setTitle("Приложение");
stage.setScene(new Scene(new Label("Hello"), 400, 300));
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.stage.Stage;
public class MinimalApp extends Application {
@Override
public void start(Stage stage) {
stage.setTitle("Приложение");
stage.setScene(new Scene(new Label("Hello"), 400, 300));
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}