本文整理汇总了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);
}
}