Uses of Class
javafx.scene.control.ComboBoxBase
Package
Description
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
The javafx.scene.control.skin package is where the skin classes, typically
one for each UI control, are located
-
Uses of ComboBoxBase in javafx.scene.control
Modifier and TypeClassDescriptionclass
ColorPicker control allows the user to select a color from either a standard palette of colors with a simple one click selection OR define their own custom color.class
ComboBox<T>
An implementation of theComboBoxBase
abstract class for the most common form of ComboBox, where a popup list is shown to users providing them with a choice that they may select from.class
The DatePicker control allows the user to enter a date as text or to select a date from a calendar popup. -
Uses of ComboBoxBase in javafx.scene.control.skin
Modifier and TypeClassDescriptionclass
An abstract class intended to be used as the base skin for ComboBox-like controls that are based onComboBoxBase
.ModifierConstructorDescriptionComboBoxBaseSkin
(ComboBoxBase<T> control) Creates a new instance of ComboBoxBaseSkin, although note that this instance does not handle any behavior / input mappings - this needs to be handled appropriately by subclasses.ComboBoxPopupControl
(ComboBoxBase<T> control) Creates a new instance of ComboBoxPopupControl, although note that this instance does not handle any behavior / input mappings - this needs to be handled appropriately by subclasses.