本文介绍了是否可以设计ProgressIndicator样式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我喜欢ProgressIndicator,除了我想改变它的颜色和圆宽。是否有可能(有css或没有)?
I like ProgressIndicator, except I'd like to change it's color and circle width. Is it possible (with css or without)?
推荐答案
当然,这很容易。
您可以在doc中找到所有相关的方法和样式:
You can find all related methods and styles in doc:
- API:
-
CSS:
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();
}
}
这篇关于是否可以设计ProgressIndicator样式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!