Skip to content

Instantly share code, notes, and snippets.

@aoetk
Created January 2, 2012 23:42
Show Gist options
  • Save aoetk/1552657 to your computer and use it in GitHub Desktop.
Save aoetk/1552657 to your computer and use it in GitHub Desktop.
FXMLでChoiceBoxを静的に組み立てる
<ChoiceBox fx:id="choice">
<items>
<FXCollections fx:factory="observableArrayList">
<String fx:value="itemA"/>
<String fx:value="itemB"/>
<String fx:value="itemC"/>
</FXCollections>
</items>
</ChoiceBox>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment