Example usage for Java javafx.scene.control ChoiceBox fields, constructors, methods, implement or subclass
The text is from its open source code.
ChoiceBox() Create a new ChoiceBox which has an empty list of items. | |
ChoiceBox(ObservableList Create a new ChoiceBox with the given set of items. |
ObjectProperty | converterProperty() Allows a way to specify how to represent objects in the items list. |
StringConverter | getConverter() |
ObservableList | getItems() |
SingleSelectionModel | getSelectionModel() |
T | getValue() |
void | hide() Closes the list of choices. |
boolean | isShowing() |
ObjectProperty | itemsProperty() |
ObjectProperty | selectionModelProperty() |
void | setConverter(StringConverter |
void | setItems(ObservableList |
void | setSelectionModel(SingleSelectionModel |
void | setTooltip(Tooltip value) |
void | setValue(T value) |
void | show() Opens the list of choices. |
ReadOnlyBooleanProperty | showingProperty() |
ObjectProperty | valueProperty() The value of this ChoiceBox is defined as the selected item in the ChoiceBox selection model. |