JavaFX Tooltip提示组件

JavaFX 工具提示用于向用户提供有关任何组件的提示。它主要用于提供有关应用程序中使用的文本字段或密码字段的提示。

它可以通过实例化javafx.scene.control.Tooltip类来创建。以下代码实现了关于用户密码字段的工具提示。

package com.yiidian;

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.PasswordField;
import javafx.scene.control.Tooltip;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;

public class ProgressBarTest extends Application {
    
    public void start(Stage primaryStage) throws Exception {
        PasswordField pf = new PasswordField();
        Tooltip tool=new Tooltip();
        StackPane root = new StackPane();
        tool.setText("Information");
        pf.setTooltip(tool);
        root.getChildren().add(pf);

        Scene scene = new Scene(root,300,200);
        primaryStage.setScene(scene);
        primaryStage.setTitle("一点教程网:ToolTip Example");
        primaryStage.show();

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

输出结果为:

热门文章

优秀文章