16 Ocak 2018 Salı

JavaFX ComboBox Sınıfı

getItems metodu
Örnek ver

setItems metodu
Şöyle yaparız.
@FXML private ComboBox<String> combo1,combo2;

@Override
public void initialize(URL location, ResourceBundle resources) {
  //Init ComboBox items
  combo1.setItems(
    FXCollections.observableArrayList(new String[]{"A","B"})
  );
  combo2.setItems(FXCollections.observableArrayList());
}
setOnAction metodu
Şöyle yaparız.
//add ActionListener for Example
combo1.setOnAction(e->{
  combo2.getItems().add(
    combo1.getSelectionModel().getSelectedItem()
  );
});

Hiç yorum yok:

Yorum Gönder