2016-11-17 7 views
0

ChoiceBoxはどのようにして塗りつぶすことができますか?私のカスタムクラスのStringPropertyJavaFXのカスタムプロパティでChoiceBoxを塗りつぶす

私はSceneBuilderで単にChoiceBoxというデザインをしましたが、データにはPersonクラスがあります。

私はメインクラスで
public class Person{ 
    private final StringProperty firstName; 

    public Person(){ 
     this(null); 
    } 

    public Person(String fname){ 
     this.firstName = new SimpleStringProperty(fname); 
    } 

    public String getFirstName(){ 
     return this.firstName.get(); 
    } 

    public void setFirstName(String fname){ 
     this.firstName.set(fname); 
    } 

    public StringProperty firstNameProperty(){ 
     return this.firstName; 
    } 
} 

private ObservableList<Person> personList = FXCollections.observableArrayList(); 
this.personList.add(new Person("Human1")); 

RootController controller = loader.getController(); 
     controller.setChoiceBox(this); 

public ObservableList<Person> getPersonList(){ 
    return this.personList; 
} 

そして、私のコントローラで:

public class RootController { 
    @FXML 
    private ChoiceBox personBox; 

    public RootController(){ 

    } 

    @FXML 
    private void initialize(){ 

    } 

    public void setChoiceBox(App app){ 

     personBox.setItems(app.getPersonList()); 
    } 


} 

しかし、このコードは、関数名(??)、またはそのような何かで私のChoiceBoxを埋めます。 firstNameプロパティでどのように記入できますか?あなたの問題のために

答えて

0

私は「最も簡単なway'.The ChoiceBox[email protected]のようなものが得られクラスのtoString()メソッドを使用して使用することをお勧めします。

toString()メソッドをオーバーライドすると、ChoiceBoxに表示される内容を定義できます。あなたがここにfirstNameプロパティが変更可能なことによって、自分自身に大きな問題を作成しました

@Override 
public String toString() { 
    return firstName.get(); 
} 
1

注:お使いの場合にはfirstNameプロパティの値を返します。

AFAIK ChoiceBoxは少なくともそのプロパティの変更を聞くことはできません(少なくとも複雑であるかもしれないskinを置き換えずに)。

ただし、これはComboBoxで行うことができます。

あなただけのカスタムcellFactory使用する必要があります。私は@fabianで完全だが、私のための質問は、なぜ、いつ起こるの者の最初の名前が本当に変化しない

private ListCell<Person> createCell(ListView<Person> listView) { 
    return new ListCell<Person>() { 

     @Override 
     protected void updateItem(Person item, boolean empty) { 
      super.updateItem(item, empty); 

      if (empty || item == null) { 
       textProperty().unbind(); 
       setText(""); 
      } else { 
       textProperty().bind(item.firstNameProperty()); 
      } 
     } 

    }; 
} 
ComboBox<Person> cb = new ComboBox<>(personList); 
cb.setCellFactory(this::createCell); 
cb.setButtonCell(createCell(null)); 
... 
+0

を?編集:ヒントのUpvote – SSchuette

関連する問題