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


Java ScrollPane.getHeight方法代碼示例

本文整理匯總了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);
}
 
開發者ID:kaanburaksener,項目名稱:octoBubbles,代碼行數:17,代碼來源:GraphController.java

示例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);
	}
}
 
開發者ID:steppp,項目名稱:Breadth-First-Search,代碼行數:47,代碼來源:MainController.java


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