JavaFX ProgressBar进度条

进度条用于向用户显示工作进度。它由javafx.scene.control.ProgressBar表示。以下代码在我们的应用程序中实现了进度条。

1 ProgressBar进度条的案例

package com.yiidian;

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

public class ProgressBarTest extends Application {
    public void start(Stage primaryStage) throws Exception {
        StackPane root = new StackPane();
        ProgressBar progress = new ProgressBar();
        root.getChildren().add(progress);
        Scene scene = new Scene(root,300,200);
        primaryStage.setScene(scene);
        primaryStage.setTitle("一点教程网:Progress Bar Example");
        primaryStage.show();

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

输出结果为:

热门文章

优秀文章