package teste; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.ComboBox; import javafx.scene.control.TextField; import javafx.scene.layout.HBox; import javafx.stage.Stage; public class ComboTeste extends Application { @Override public void start(final Stage stage) throws Exception { HBox root = new HBox(); root.setFillHeight(false); Scene scene = new Scene(root, 850, 550); stage.setScene(scene); stage.setTitle("Messages Sample"); TextField textField = new TextField(); ComboBox comboBox = new ComboBox<>(); comboBox.setEditable(true); root.getChildren().addAll(textField, comboBox); stage.show(); } public static void main(String[] args) { launch(args); } }