Hyperlink
類表示類似於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.tw511.com");
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("https://www.tw511.com");
link.setOnAction((ActionEvent e) -> {
System.out.println("This link is clicked");
});
setText
範例方法定義超連結的文字標題。超連結類擴充套件了Labeled
類,可以為超連結設定字型和填充。
以下程式碼將影象新增到超連結控制元件。
Hyperlink hpl = new Hyperlink("tw511.com");
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("tw511.com");
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);
}
}
上面的程式碼生成以下結果。