使用场景生成器8.5.0定制java8单选按钮



我正在尝试创建一个程序,颜色对我来说很重要,我的问题是如何自定义单选按钮(更改蓝色环并更改选定的灰色圆圈和白色环)在这里输入图像描述

最简单的是在css中做样式。您可以查看一下modena.css (javafx的基础css文件)。将你需要的部分复制到你的css文件中,并根据需要编辑值。

https://gist.github.com/maxd/63691840fc372f22f470→从第749行

/*******************************************************************************
*                                                                             *
* RadioButton                                                                 *
*                                                                             *
******************************************************************************/
.radio-button {
-fx-label-padding: 0.0em 0.0em 0.0em 0.416667em; /* 0 0 0 5 */
-fx-text-fill: -fx-text-background-color;
}
.radio-button > .radio,
.radio-button:focused > .radio  {
-fx-background-radius: 1.0em; /* large value to make sure this remains circular */
-fx-padding: 0.333333em; /* 4 -- padding from outside edge to the inner black dot */
}
.radio-button > .radio > .dot {
-fx-background-color: transparent;
-fx-background-radius: 1.0em; /* large value to make sure this remains circular */
-fx-padding: 0.333333em; /* 4 -- radius of the inner black dot when selected */
}

注意单选按钮扩展了其他ui类。参考指南可以帮助您理解层次结构:https://docs.oracle.com/javase/8/javafx/api/javafx/scene/doc-files/cssref.html#radiobutton

相关内容

  • 没有找到相关文章

最新更新