7
'da bir combobox'a bir liste değerlerinin doldurulması javaFx'te bir combobox'a yerleştirmek istediğim bir değerler listem var. Bu bu benim combo.xmlJavaFx
<AnchorPane id="AnchorPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="- Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/2.2">
<children>
<ComboBox id="comboId" layoutX="210.0" layoutY="108.0" prefHeight="27.0" prefWidth="102.0" promptText="Select">
<items>
<FXCollections fx:factory="observableArrayList">
<String fx:value="Item 1" />
<String fx:value="Item 2" />
<String fx:value="Item 3" />
</FXCollections>
</items>
</Com boBox>
</children>
</AnchorPane>
olan benim ana
public class JavaFXExperiment extends Application {
@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("combo.fxml"));
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
final ComboBox comboId = new ComboBox();
comboId.getItems().addAll(
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]");
}
public static void main(String[] args) {
launch(args);
}
}
Bu benim xml dosyası ve ben combobox.anyone bu değerleri göstermek istiyorum ana sınıfı yardımcı lütfen
sayesinde olacak, bu da çalışır. – lmiguelvargasf
'@FXML public ComboBox myCombobox;' – saikosen