本文整理匯總了Java中javafx.scene.control.ScrollPane.getHeight方法的典型用法代碼示例。如果您正苦於以下問題:Java ScrollPane.getHeight方法的具體用法?Java ScrollPane.getHeight怎麽用?Java ScrollPane.getHeight使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javafx.scene.control.ScrollPane
的用法示例。
在下文中一共展示了ScrollPane.getHeight方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: ensureVisible
import javafx.scene.control.ScrollPane; //導入方法依賴的package包/類
void ensureVisible(double x, double y) {
ScrollPane scrollPane = diagramController.getScrollPane();
double xScroll = (x - scrollPane.getWidth() / 2) / (8000 - scrollPane.getWidth());
double yScroll = (y - scrollPane.getHeight() / 2) / (8000 - scrollPane.getHeight());
final Timeline timeline = new Timeline();
final KeyValue kv1 = new KeyValue(scrollPane.hvalueProperty(), xScroll);
final KeyValue kv2 = new KeyValue(scrollPane.vvalueProperty(), yScroll);
final KeyFrame kf = new KeyFrame(Duration.millis(100), kv1, kv2);
timeline.getKeyFrames().add(kf);
timeline.play();
aScrollPane.setHbarPolicy(ScrollPane.ScrollBarPolicy.NEVER);
aScrollPane.setVbarPolicy(ScrollPane.ScrollBarPolicy.NEVER);
}
示例2: createCells
import javafx.scene.control.ScrollPane; //導入方法依賴的package包/類
/**
* Crea le celle per visualizzare i due vettori e le inizializza.
* @param array array che contiene le informazioni sui nodi visitati e padri.
*/
private static void createCells(Object[] array) {
Singleton s = Singleton.getInstance();
ScrollPane sp = null;
VBox vBox = s.mainViewController.vBoxVisited;
// ho passato il vettore visited
if (array instanceof Boolean[]) {
sp = s.mainViewController.scrollPaneVisited;
vBox = s.mainViewController.vBoxVisited;
} else {
// ho passato il vettore dei padri
sp = s.mainViewController.scrollPaneParents;
vBox = s.mainViewController.vBoxParents;
}
vBox.getChildren().clear();
final double width = sp.getWidth();
final double cellHeight = sp.getHeight() / 10;
for (Integer i = 0; i < array.length; i++) {
HBox cell = new HBox();
cell.getStyleClass().add("scrollPaneCell");
// se quello che sto esaminando è il nodo sorgente allora lo evidenzio
if (s.animPrefs.getRoot().getElement().getIndex() == i) {
cell.getStyleClass().add("rootNodeCell");
}
// incremento l'altezza del VBox
vBox.setPrefHeight(vBox.getHeight() + cellHeight);
// creo la cella e la aggiungo al VBox
cell.setPrefSize(width, cellHeight);
cell.getChildren().add(new Text(i.toString()));
cell.getChildren().add(new Text(array[i] != null ? array[i].toString() : "null"));
cell.setAlignment(Pos.CENTER_LEFT);
vBox.getChildren().add(cell);
}
}