当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaFX 类 ProgressBar用法及代码示例


ProgressBar是JavaFX软件包的一部分。它是ProgressIndicator的特长,以水平条表示。进度条通常显示任务的完成量。

ProgressBar类的构造函数是:

  1. ProgressBar():创建一个新的中间进度栏。
  2. ProgressBar(double p):创建具有指定进度的进度栏。

常用方法


方法 说明
isIndeterminate() 获取不确定的属性的值。
getProgress() 获取属性进度的值。
setProgress(double v) 设置属性进度的值

以下示例程序旨在说明ProgressBar:

该程序将创建一个进度条,名称为pb。进度指示器将在场景内创建,而场景又将托管在舞台(顶级JavaFX容器)中。函数setTitle()用于为舞台提供标题。然后,创建一个平铺窗格,在其上调用addChildren()方法以将进度指示器和按钮附加到场景内部,以及代码中的(200,200)指定的分辨率。最后,调用show()方法以显示最终结果。

// Java program to illustrate the use of progressbar 
import javafx.application.Application; 
import javafx.scene.Scene; 
import javafx.scene.control.*; 
import javafx.scene.layout.*; 
import java.io.*; 
import javafx.event.ActionEvent; 
import javafx.event.EventHandler; 
import javafx.scene.control.Label; 
import javafx.stage.Stage; 
import java.net.*; 
public class progress extends Application { 
  
    static double ii = 0; 
  
    // launch the application 
    public void start(Stage s) throws Exception 
    { 
        // set title for the stage 
        s.setTitle("creating progressbar"); 
  
        // create a progressbar 
        ProgressBar pb = new ProgressBar(); 
  
        // create a tile pane 
        TilePane r = new TilePane(); 
  
        // action event 
        EventHandler<ActionEvent> event = new EventHandler<ActionEvent>() { 
            public void handle(ActionEvent e) 
            { 
                // set progress to different level of progressbar 
                ii += 0.1; 
                pb.setProgress(ii); 
            } 
  
        }; 
  
        // creating button 
        Button b = new Button("increase"); 
  
        // set on action 
        b.setOnAction(event); 
  
        // add button 
        r.getChildren().add(pb); 
        r.getChildren().add(b); 
  
        // create a scene 
        Scene sc = new Scene(r, 200, 200); 
  
        // set the scene 
        s.setScene(sc); 
  
        s.show(); 
    } 
  
    public static void main(String args[]) 
    { 
        // launch the application 
        launch(args); 
    } 
}

输出


注意:以下程序可能无法在在线IDE中运行,请使用离线编译器。
参考: https://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ProgressBar.html



相关用法


注:本文由纯净天空筛选整理自andrew1234大神的英文原创作品 JavaFX | ProgressBar。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。