當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaFX 類 ComboBox用法及代碼示例


ComboBox是JavaFX庫的一部分。 JavaFX ComboBox是簡單ComboBox的實現,它顯示了一個項目列表,用戶最多可以從中選擇一個項目,它繼承了ComboBoxBase類。

ComboBox的構造函數:

  1. ComboBox():創建一個默認的空組合框
  2. ComboBox(ObservableList i):使用給定的項目創建一個組合框

常用方法:


方法 說明
getEditor() 獲取屬性編輯器的值
getItems() 返回組合框的項目
getVisibleRowCount() 返回屬性visibleRowCount的值。
setItems(ObservableList v) 設置組合框的項目
setVisibleRowCount(int v) 設置屬性VisibleRowCount的值

以下示例程序旨在說明JavaFX的ComboBox類:

  • 程序創建一個組合框並向其中添加項目:此程序創建一個名為combo_box的組合框,並使用ChoiceBox(FXCollections.observableArrayList(week_days))向其中添加字符串列表。我們將組合框和一個標簽(描述)添加到磁貼窗格(getChildren().add()函數)。我們將創建一個舞台(容器),並將圖塊添加到場景中,然後將場景添加到場景中。我們將使用show()函數顯示舞台。
    // Java Program to create a combo Box and add items to it 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.control.*; 
    import javafx.scene.layout.*; 
    import javafx.event.ActionEvent; 
    import javafx.event.EventHandler; 
    import javafx.collections.*; 
    import javafx.stage.Stage; 
    import javafx.scene.text.Text.*; 
    import javafx.scene.paint.*; 
    import javafx.scene.text.*; 
    public class combo_box_1 extends Application { 
      
        // Launch the application 
        public void start(Stage stage) 
        { 
            // Set title for the stage 
            stage.setTitle("creating combo box "); 
      
            // Create a tile pane 
            TilePane r = new TilePane(); 
      
            // Create a label 
            Label description_label = 
                         new Label("This is a combo box example "); 
      
            // Weekdays 
            String week_days[] = 
                       { "Monday", "Tuesday", "Wednesday", 
                                        "Thrusday", "Friday" }; 
      
            // Create a combo box 
            ComboBox combo_box = 
                         new ComboBox(FXCollections 
                                     .observableArrayList(week_days)); 
      
            // Create a tile pane 
            TilePane tile_pane = new TilePane(combo_box); 
      
            // Create a scene 
            Scene scene = new Scene(tile_pane, 200, 200); 
      
            // Set the scene 
            stage.setScene(scene); 
      
            stage.show(); 
        } 
      
        public static void main(String args[]) 
        { 
            // Launch the application 
            launch(args); 
        } 
    }

    輸出:

  • 程序創建一個組合框並向其中添加一個事件處理程序:此程序創建一個名為combo_box的組合框,並使用(ChoiceBox(FXCollections.observableArrayList(week_days)))向其中添加字符串列表。我們將組合框和一個標簽(描述)添加到磁貼窗格(getChildren().add()函數)。我們將創建一個舞台(容器),並將圖塊添加到場景中,然後將場景添加到場景中。我們將使用show()函數顯示舞台。我們將添加一個事件處理程序事件來處理combo_box的事件,該事件會將所選標簽的文本更改為所選項目。我們還將選擇的標簽添加到平鋪窗格中。
    // Java program to create a combo box and add event handler to it 
    import javafx.application.Application; 
    import javafx.scene.Scene; 
    import javafx.scene.control.*; 
    import javafx.scene.layout.*; 
    import javafx.event.ActionEvent; 
    import javafx.event.EventHandler; 
    import javafx.collections.*; 
    import javafx.stage.Stage; 
    import javafx.scene.text.Text.*; 
    import javafx.scene.paint.*; 
    import javafx.scene.text.*; 
    public class combo_box_2 extends Application { 
      
        // Launch the application 
        public void start(Stage stage) 
        { 
            // Set title for the stage 
            stage.setTitle("creating combo box "); 
      
            // Create a tile pane 
            TilePane r = new TilePane(); 
      
            // Create a label 
            Label description_label = 
                             new Label("This is a combo box example "); 
      
            // Weekdays 
            String week_days[] = 
                       { "Monday", "Tuesday", "Wednesday", 
                                       "Thrusday", "Friday" }; 
      
            // Create a combo box 
            ComboBox combo_box = 
                        new ComboBox(FXCollections 
                                  .observableArrayList(week_days)); 
      
            // Label to display the selected menuitem 
            Label selected = new Label("default item selected"); 
      
            // Create action event 
            EventHandler<ActionEvent> event = 
                      new EventHandler<ActionEvent>() { 
                public void handle(ActionEvent e) 
                { 
                    selected.setText(combo_box.getValue() + " selected"); 
                } 
            }; 
      
            // Set on action 
            combo_box.setOnAction(event); 
      
            // Create a tile pane 
            TilePane tile_pane = new TilePane(combo_box, selected); 
      
            // Create a scene 
            Scene scene = new Scene(tile_pane, 200, 200); 
      
            // Set the scene 
            stage.setScene(scene); 
      
            stage.show(); 
        } 
      
        public static void main(String args[]) 
        { 
            // Launch the application 
            launch(args); 
        } 
    }

    輸出:

注意:以上程序可能無法在在線IDE中運行,請使用離線轉換器。

參考: https://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ComboBox.html



相關用法


注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 JavaFX | ComboBox with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。