FontCSS.java

See also

FontCSS.css
FontCSS.fxml


FontCSS.java

// FontCSS.java
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class FontCSS extends Application {   
   @Override
   public void start(Stage stage) throws Exception {
      Parent root = 
         FXMLLoader.load(getClass().getResource("FontCSS.fxml"));
      
      Scene scene = new Scene(root);
      stage.setTitle("FontCSS");
      stage.setScene(scene);
      stage.show();
   }

   public static void main(String[] args) {
      launch(args);
   }
}


Maintained by John Loomis, updated Sat Feb 10 12:12:28 2018