관리자 글쓰기
[JavaFX] ComboBox, RadioButton
2017. 1. 12. 21:14 - 개발 새발

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();