JavaFX 超链接

JavaFX教程 – JavaFX超链接

超链接类表示类似于JavaFX的网页上的锚链接的超链接。

import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Hyperlink;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

public class Main extends Application {

    @Override
    public void start(Stage stage) {
        stage.setTitle("HTML");
        stage.setWidth(500);
        stage.setHeight(500);
        Scene scene = new Scene(new Group());
        VBox root = new VBox();    
        Hyperlink link = new Hyperlink("www.w3cschool.cn");   

        root.getChildren().addAll(link);
        scene.setRoot(root);

        stage.setScene(scene);
        stage.show();
    }

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

上面的代码生成以下结果。


创建超链接

以下代码使用默认构造函数创建超链接对象。然后它设置一个URL作为文本标题,最后添加点击事件处理程序。

Hyperlink link = new Hyperlink();
link.setText("http://www.w3cschool.cn");
link.setOnAction((ActionEvent e) -> {
    System.out.println("This link is clicked");
});

setText实例方法定义超链接的文本标题。

超链接类扩展了Labeled类,我们可以为超链接设置字体和填充。

以下代码将图像添加到超链接控件。

Hyperlink hpl = new Hyperlink("www.w3cschool.cn");
Image image1 = new Image(new File("a.jpg").toURI().toString(), 0, 100, false, false);
hpl.setGraphic(new ImageView (image1));

例子

更改超链接的字体

import java.io.File;

import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.Hyperlink;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.VBox;
import javafx.scene.text.Font;
import javafx.stage.Stage;

public class Main extends Application {

    @Override
    public void start(Stage stage) {
        stage.setTitle("HTML");
        stage.setWidth(500);
        stage.setHeight(500);
        Scene scene = new Scene(new Group());
        VBox root = new VBox();    

        Hyperlink hpl = new Hyperlink("w3cschool.cn");

        hpl.setFont(Font.font("Arial", 14));

        root.getChildren().addAll(hpl);

        scene.setRoot(root);

        stage.setScene(scene);
        stage.show();
    }

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

上面的代码生成以下结果。


版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《JavaFX 超链接》
文章链接:https://zhuji.vsping.com/293855.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。