Skip to content
koolskateguy89 edited this page Apr 29, 2021 · 4 revisions

Checkbox

JFXCheckBox

The JFXCheckBox is a material design compliant implementation of a checkbox for JavaFX.

Alt text

Styling JFXCheckBox

JFXCheckBox uses the default style class .jfx-check-box and defines the following CSS properties.

CSS Property Values Default
-jfx-checked-color color #0F9D58
-jfx-unchecked-color color #5A5A5A
.jfx-check-box {
     -jfx-checked-color: red;
     -jfx-unchecked-color: black;
}

/* Styling checkmark */
.jfx-check-box .mark {
     -fx-border-color: white;
}
  • Introduction
  • Basic Components
  • Advanced Components
    • Badge
    • Decorator
    • Dialog
    • Drawer
    • List View
    • Masonry
    • Pickers
    • Popup
    • Snack Bar
    • Tree Table View
Clone this wiki locally