30 lines
744 B
Java
30 lines
744 B
Java
package com.baeldung;
|
|
|
|
import javafx.application.Application;
|
|
import javafx.fxml.FXMLLoader;
|
|
import javafx.scene.Scene;
|
|
import javafx.scene.layout.AnchorPane;
|
|
import javafx.stage.Stage;
|
|
|
|
public class Main extends Application {
|
|
|
|
public static void main(String[] args) {
|
|
launch(args);
|
|
}
|
|
|
|
@Override
|
|
public void start(Stage primaryStage) throws Exception {
|
|
|
|
FXMLLoader loader = new FXMLLoader(Main.class.getResource("/SearchController.fxml"));
|
|
AnchorPane page = (AnchorPane) loader.load();
|
|
Scene scene = new Scene(page);
|
|
|
|
scene.getStylesheets().add("/search.css");
|
|
|
|
primaryStage.setTitle("Title goes here");
|
|
primaryStage.setScene(scene);
|
|
primaryStage.show();
|
|
|
|
}
|
|
}
|