本文整理匯總了Java中javafx.scene.Parent.layout方法的典型用法代碼示例。如果您正苦於以下問題:Java Parent.layout方法的具體用法?Java Parent.layout怎麽用?Java Parent.layout使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javafx.scene.Parent
的用法示例。
在下文中一共展示了Parent.layout方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: start
import javafx.scene.Parent; //導入方法依賴的package包/類
@Override
public void start(Stage primaryStage) throws Exception {
if (frontier == null) {
throw new IllegalStateException("GUI launched without frontier");
}
formatter = new DecimalFormat("#.##");
points = new XYChart.Series[frontier.size()];
primaryStage.setTitle("VNFCP Optimization");
FXMLLoader loader = new FXMLLoader(
getClass().getResource("GuiApp.fxml")
);
loader.setController(this);
Parent root = loader.load();
primaryStage.setScene(new Scene(root));
root.applyCss();
root.layout();
computeColorMinMax();
// Gradient
Stop[] stops = new Stop[]{
new Stop(0, Color.BLACK),
new Stop(0.8, Color.color(1, 0.63, 0.4)),
new Stop(1, Color.color(1, 0.78, 0.5))
};
LinearGradient lg = new LinearGradient(0, 1, 0, 0, true, CycleMethod.NO_CYCLE, stops);
colorStops = lg.getStops();
rect.setFill(lg);
// LineChart
xAxis.setLabel("Total Delay");
xAxis.setForceZeroInRange(false);
yAxis.setLabel("Total Used CPU");
yAxis.setForceZeroInRange(false);
colorLegendLabel.setText("Num. of Hops");
chart.setTitle("Pareto Frontier [" + frontier.size() + " elements]");
for (int i = 0; i < frontier.size(); i++) {
addSolutionToChart(i);
}
// Color Labels
updateColumn2Width();
colorLegendLabel.textProperty().addListener(observable -> updateColumn2Width());
minColorValLabel.textProperty().addListener(observable -> updateColumn2Width());
maxColorValLabel.textProperty().addListener(observable -> updateColumn2Width());
primaryStage.show();
}