ComboBox
- FXML 작성 예
<ComboBox fx:id="age_Box" layoutX="188.0" layoutY="600.0" prefHeight="30.0" prefWidth="365.0">
<items>
<FXCollections fx:factory="observableArrayList">
<String fx:value="10대"/>
</FXCollections>
</items>
</ComboBox>
- 자바 코드 - 값 불러오기
age_Box.getValue();
RadioButton - ToggleGroup 이용
- FXML 작성 예
<fx:define>
<ToggleGroup fx:id="gender_Group"/>
</fx:define>
<RadioButton layoutX="189.0" layoutY="525.0" userData="남성" mnemonicParsing="false" prefHeight="30.0" toggleGroup="$gender_Group"></RadioButton>
<RadioButton layoutX="426.0" layoutY="525.0" userData="여성" mnemonicParsing="false" prefHeight="30.0" toggleGroup="$gender_Group"></RadioButton>
- 자바 코드 - 값 불러오기
gender_Group.getSelectedToggle().getUserData();
'코딩 > Java' 카테고리의 다른 글
[JAVA] SMTP 이용하기 (0) | 2017.01.14 |
---|---|
[JAVA] 비동기 채널 API (0) | 2017.01.13 |
[NIO]TCP 비동기/블로킹/넌블로킹의 차이 (0) | 2017.01.05 |
[NIO]TCP 비동기 채널 - 비동기 소켓 채널 (0) | 2017.01.05 |
[NIO]TCP 비동기 채널 - 비동기 서버소켓 채널 (0) | 2017.01.05 |