當前位置: 首頁>>代碼示例>>Java>>正文


Java GridPane.setRowIndex方法代碼示例

本文整理匯總了Java中javafx.scene.layout.GridPane.setRowIndex方法的典型用法代碼示例。如果您正苦於以下問題:Java GridPane.setRowIndex方法的具體用法?Java GridPane.setRowIndex怎麽用?Java GridPane.setRowIndex使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javafx.scene.layout.GridPane的用法示例。


在下文中一共展示了GridPane.setRowIndex方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: addEditLabelsPane

import javafx.scene.layout.GridPane; //導入方法依賴的package包/類
/**
 * Sets up the editable ListView to edit the labels/items we want to see in
 * the comboboxes on the main screen.
 */
private void addEditLabelsPane() {
    labelsList = new ListView<>();
    // first set up the listview with empty labels in order to allow editing
    ObservableList<String> itemsLabelsList = FXCollections
            .observableArrayList("", "", "", "", "");
    
    // get the labels from the database and store them in the listview
    ArrayList<String> labelStrings = getLabels();
    // add items starting at the top
    for (int i = 0; i < labelStrings.size(); i++) {
        itemsLabelsList.set(i, labelStrings.get(i));
    }
    
    // set a CellFactory on the listview to be able make the cells editable
    // using setEditable(true) isn't enough
    labelsList.setCellFactory(TextFieldListCell.forListView());
    labelsList.setEditable(true);
    
    // give the listview an id (FXML) so we can look it up by its id, and
    // toggle the visibility
    labelsList.setId("labelsListView");
    labelsList.setItems(itemsLabelsList);
    labelsList.setVisible(false);
    // "magik numbers" are figured out by observations
    labelsList.setPrefWidth(120);
    labelsList
            .setPrefHeight((LISTVIEW_ROW_HEIGHT * MAX_NUMBER_LABELS) + 18);
    
    // position the listview in the settings pane
    GridPane.setColumnIndex(labelsList, 1);
    GridPane.setRowIndex(labelsList, 0);
    GridPane.setRowSpan(labelsList, 2);
    
    // when editing a label in the listview, update the value
    // in the database and setup the main gridpane with the new items in the
    // comboboxes
    labelsList.setOnEditCommit(event -> {
        labelsList.getItems().set(event.getIndex(), event.getNewValue());
        updateLabel(event.getIndex(), event.getNewValue());
        controller.setupGridPane(controller.focusDay);
    });
    
    editLabelsPane.getChildren().add(labelsList);
}
 
開發者ID:deltadak,項目名稱:plep,代碼行數:49,代碼來源:SlidingSettingsPane.java

示例2: addChangeNumberOfDaysSettings

import javafx.scene.layout.GridPane; //導入方法依賴的package包/類
/**
 * Adds the Spinners to be able to change the number of days to move and
 * number of days to show to the settings pane.
 */
private void addChangeNumberOfDaysSettings() {
    // Adding the spinner to change the number of days to move.
    numberOfMovingDaysSpinner = new Spinner<>();
    SpinnerValueFactory<Integer> valueFactory
            = new SpinnerValueFactory.IntegerSpinnerValueFactory(1, 14,
                                                                 controller.numberOfMovingDays);
    
    numberOfMovingDaysSpinner.setValueFactory(valueFactory);
    numberOfMovingDaysSpinner.setId("numberOfMovingDaysSpinner");
    numberOfMovingDaysSpinner.setPrefWidth(70);
    GridPane.setColumnIndex(numberOfMovingDaysSpinner, 2);
    editDaysPane.getChildren().add(numberOfMovingDaysSpinner);
    
    // Adding the spinner to change the number of days to show.
    numberOfShowDaysSpinner = new Spinner<>();
    // magik value 31 is the length of the longest month, just to be sure
    SpinnerValueFactory<Integer> valueShowFactory
            = new SpinnerValueFactory.IntegerSpinnerValueFactory(1, 31,
                                                                 controller.numberOfDays);
    
    numberOfShowDaysSpinner.setValueFactory(valueShowFactory);
    numberOfShowDaysSpinner.setId("numberOfShowDaysSpinner");
    numberOfShowDaysSpinner.setPrefWidth(70);
    GridPane.setColumnIndex(numberOfShowDaysSpinner, 2);
    GridPane.setRowIndex(numberOfShowDaysSpinner, 1);
    editDaysPane.getChildren().add(numberOfShowDaysSpinner);
    
    // Adding the spinner to change the number of columns.
    maxColumnsSpinner = new Spinner<>();
    // Get the previous value from the database.
    int defaultValue = Integer
            .valueOf(getSetting(Controller.MAX_COLUMNS_NAME));
    SpinnerValueFactory<Integer> valueColumnFactory
            = new SpinnerValueFactory.IntegerSpinnerValueFactory(1, 14,
                                                                 defaultValue);
    
    maxColumnsSpinner.setValueFactory(valueColumnFactory);
    maxColumnsSpinner.setId("maxColumnsSpinner");
    maxColumnsSpinner.setPrefWidth(70);
    GridPane.setColumnIndex(maxColumnsSpinner, 2);
    GridPane.setRowIndex(maxColumnsSpinner, 2);
    editDaysPane.getChildren().add(maxColumnsSpinner);
}
 
開發者ID:deltadak,項目名稱:plep,代碼行數:48,代碼來源:SlidingSettingsPane.java


注:本文中的javafx.scene.layout.GridPane.setRowIndex方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。