JavaFX ProgressIndicator进度指示器
进度指示器在某种程度上类似于进度条。它不是向用户显示模拟进度,而是显示数字进度,以便用户可以知道完成的工作量的百分比。
它由javafx.scene.control.ProgressIndicator类表示。需要实例化此类以创建进度指示器。以下代码在我们的应用程序中实现了 Progress Indicator。
ProgressIndicator 进度指示器的案例
package com.yiidian;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.ProgressIndicator;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
public class Progress_Indicator extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
ProgressIndicator PI=new ProgressIndicator();
StackPane root = new StackPane();
root.getChildren().add(PI);
Scene scene = new Scene(root,300,200);
primaryStage.setScene(scene);
primaryStage.setTitle("一点教程网:Progress Indicator Example");
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
输出结果为:
热门文章
优秀文章