콤비네이션 박스

2745 단어 JavaFXJava
창에서 콤보 상자 잠그기
sample.fxml

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.layout.AnchorPane?>

<?import javafx.collections.FXCollections?>
<?import java.lang.String?>
<AnchorPane maxHeight="-Infinity"
            maxWidth="-Infinity"
            minHeight="-Infinity"
            minWidth="-Infinity"
            prefHeight="400.0"
            prefWidth="600.0"
            xmlns:fx="http://javafx.com/fxml/1">
    <ComboBox layoutX="36.0" layoutY="50.0" prefWidth="150.0" >
        <items>
            <FXCollections fx:factory="observableArrayList">
                <String fx:value="項目1" />
                <String fx:value="項目2" />
                <String fx:value="項目3" />
                <String fx:value="項目4" />
                <String fx:value="項目5" />
            </FXCollections>
        </items>
    </ComboBox>
</AnchorPane>

FXML로 콤보 상자의 내용을 쓸 수 있습니다

좋은 웹페이지 즐겨찾기