How to create a Hyperlink using JavaFX?



A Hyperlink is a UI component that responds to clicks and rollovers. You can create a hyperlink by instantiating the javafx.scene.control.Hiperlink class.

Example

The following Example demonstrates the creation of a Hyperlink.

import javafx.application.Application; import javafx.geometry.Insets; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.Hyperlink; import javafx.scene.layout.VBox; import javafx.scene.paint.Color; import javafx.stage.Stage; public class HiperlinkExample extends Application {    public void start(Stage stage) {       //Creating a hyper link       Hyperlink link = new Hyperlink("https://www.tutorialspoint.com");       //Creating a vbox to hold the pagination       VBox vbox = new VBox();       vbox.setSpacing(5);       vbox.setPadding(new Insets(50, 50, 50, 60));       vbox.getChildren().addAll(link);       //Setting the stage       Group root = new Group(vbox);       Scene scene = new Scene(root, 595, 200, Color.BEIGE);       stage.setTitle("Hyperlink");       stage.setScene(scene);       stage.show();    }    public static void main(String args[]){       launch(args);    } }
Updated on: 2020-05-18T08:21:20+05:30

412 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements