-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Checkbox
koolskateguy89 edited this page Apr 29, 2021
·
4 revisions
The JFXCheckBox
is a material design compliant implementation of a checkbox for JavaFX.
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
- Button
- Check Box
- Combo Box
- Hamburger
- Input Fields
- Progress Bar
- Radio Button
- Rippler
- Scroll Pane
- Slider
- Spinner
- Tab Pane
- Toggle Button
-
Advanced Components
- Badge
- Decorator
- Dialog
- Drawer
- List View
- Masonry
- Pickers
- Popup
- Snack Bar
- Tree Table View