package testcombobox; import com.sun.javafx.runtime.VersionInfo; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.ComboBox; import javafx.stage.Stage; public class TestComboBox extends Application { public static void main(String[] args) { launch(); } @Override public void start(Stage stage) throws Exception { stage.setTitle(VersionInfo.getRuntimeVersion()); stage.setScene(new Scene(new ComboBox(), 300, 50)); stage.show(); } }