JavaFX对话框标题颜色自定义

时间:2015-08-19 06:31:51

标签: javafx-8

我使用This Link自定义了对话框弹出窗口 但我无法更改标题颜色,请参阅下图。

enter image description here

是否可以在此弹出窗口中添加CSS,以及如何单独推理ok按钮设计?请帮忙。

1 个答案:

答案 0 :(得分:1)

关注http://docs.cksource.com/CKFinder_2.x/Developers_Guide/Java/Configuration/Extending并添加

.dialog-pane:header .header-panel .label {
    -fx-font-size: 1.167em; /* 14px */
    -fx-wrap-text: true;
    -fx-text-fill: white;
}

到css文件。

  

...以及如何单独推理ok按钮设计?

一种方法是查找“确定”按钮,然后应用自定义CSS样式

Button button = ( Button ) alert.getDialogPane().lookupButton( ButtonType.OK );
button.getStyleClass().add( "my-ok-button" );