8
Tôi thích ProgressIndicator, ngoại trừ tôi muốn thay đổi màu sắc và chiều rộng hình tròn. Có thể (với css hoặc không)?Nó có thuộc tính ProgressIndicator không?
Tôi thích ProgressIndicator, ngoại trừ tôi muốn thay đổi màu sắc và chiều rộng hình tròn. Có thể (với css hoặc không)?Nó có thuộc tính ProgressIndicator không?
Tất nhiên, nó rất dễ dàng.
Bạn có thể tìm thấy tất cả các phương pháp liên quan và phong cách trong doc:
CSS: http://docs.oracle.com/javafx/2/api/javafx/scene/doc-files/cssref.html#progressindicator
public class HelloProgressIndicator extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage stage) throws Exception {
Pane root = new Pane();
Scene scene = new Scene(root, 200, 200);
ProgressIndicator pi = new ProgressIndicator(.314);
// changing color with css
pi.setStyle(" -fx-progress-color: red;");
// changing size without css
pi.setMinWidth(150);
pi.setMinHeight(150);
root.getChildren().add(pi);
stage.setScene(scene);
stage.show();
}
}