Skip to content

Instantly share code, notes, and snippets.

View AvocadoFlour's full-sized avatar
🎯
Focusing

Kamina AvocadoFlour

🎯
Focusing
View GitHub Profile
@jewelsea
jewelsea / ChoiceBoxBackedByDatabaseIds.java
Last active May 19, 2022 09:16
Example JavaFX ChoiceBox control backed by Database IDs
import javafx.application.Application;
import javafx.beans.value.*;
import javafx.collections.*;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ChoiceBoxBackedByDatabaseIds extends Application {
public static void main(String[] args) throws Exception { launch(args); }