如何使用 JavaFX 创建超链接?


超链接是一种 UI 组件,对点击和滚动做出响应。你可以通过实例化 javafx.scene.control.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://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);
   }
}

更新于:2020-05-18

339 次浏览

开启你的 职业生涯

完成课程取得认证

开始
广告