Created
January 2, 2012 23:42
-
-
Save aoetk/1552657 to your computer and use it in GitHub Desktop.
FXMLでChoiceBoxを静的に組み立てる
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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