javafx.scene.shape.Line.endYProperty()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(2.3k)|赞(0)|评价(0)|浏览(140)

本文整理了Java中javafx.scene.shape.Line.endYProperty()方法的一些代码示例,展示了Line.endYProperty()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Line.endYProperty()方法的具体详情如下:
包路径:javafx.scene.shape.Line
类名称:Line
方法名:endYProperty

Line.endYProperty介绍

暂无

代码示例

代码示例来源:origin: jfoenixadmin/JFoenix

(boxWidth + padding - labelOffset) / 2 - boxWidth / 5.5,
  Interpolator.EASE_BOTH),
new KeyValue(rightLine.endYProperty(),
  maxHeight - padding - 2 * lineThick,
  Interpolator.EASE_BOTH),
  (boxWidth + padding - labelOffset) / 2 - boxWidth / 5.5,
  Interpolator.EASE_BOTH),
new KeyValue(leftLine.endYProperty(),
  maxHeight - padding - 2 * lineThick,
  Interpolator.EASE_BOTH)
  boxWidth - padding - labelOffset + lineThick / 2,
  Interpolator.EASE_BOTH),
new KeyValue(rightLine.endYProperty(), (maxHeight - padding) / 2.4, Interpolator.EASE_BOTH),
new KeyValue(leftLine.endXProperty(), padding + lineThick / 4, Interpolator.EASE_BOTH),
new KeyValue(leftLine.endYProperty(), (maxHeight - padding) / 1.4, Interpolator.EASE_BOTH)

代码示例来源:origin: stackoverflow.com

stack.getChildren().addAll(splitPane1, glassPane);
Scene scene = new Scene(stack, 800, 600);
LV1.endYProperty().bind(scene.heightProperty());
stage.setScene(scene);
pane1.setOnMouseMoved(mouseHandler);

代码示例来源:origin: org.copper-engine/copper-monitoring-client

lineInput.endXProperty().set(lineInput.startXProperty().get());
lineInput.startYProperty().set(0);
lineInput.endYProperty().bind(animationPane.heightProperty());
animationPane.getChildren().add(lineInput);
lineOutput.endXProperty().set(lineOutput.startXProperty().get());
lineOutput.startYProperty().set(0);
lineOutput.endYProperty().bind(animationPane.heightProperty());
animationPane.getChildren().add(lineOutput);

代码示例来源:origin: com.jfoenix/jfoenix

(boxWidth + padding - labelOffset) / 2 - boxWidth / 5.5,
  Interpolator.EASE_BOTH),
new KeyValue(rightLine.endYProperty(),
  maxHeight - padding - 2 * lineThick,
  Interpolator.EASE_BOTH),
  (boxWidth + padding - labelOffset) / 2 - boxWidth / 5.5,
  Interpolator.EASE_BOTH),
new KeyValue(leftLine.endYProperty(),
  maxHeight - padding - 2 * lineThick,
  Interpolator.EASE_BOTH)
  boxWidth - padding - labelOffset + lineThick / 2,
  Interpolator.EASE_BOTH),
new KeyValue(rightLine.endYProperty(), (maxHeight - padding) / 2.4, Interpolator.EASE_BOTH),
new KeyValue(leftLine.endXProperty(), padding + lineThick / 4, Interpolator.EASE_BOTH),
new KeyValue(leftLine.endYProperty(), (maxHeight - padding) / 1.4, Interpolator.EASE_BOTH)

相关文章