javafx.scene.Node.minHeight()方法的使用及代码示例

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

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

Node.minHeight介绍

暂无

代码示例

代码示例来源:origin: org.controlsfx/controlsfx

@Override
protected double computeMinHeight(double width, double topInset, double rightInset, double bottomInset, double leftInset) {
  return content == null ? 0 : content.minHeight(width);
};

代码示例来源:origin: org.fxmisc.flowless/flowless

@Override
public double minBreadth(Node node) {
  return node.minHeight(-1);
}

代码示例来源:origin: org.controlsfx/controlsfx

@Override protected double computeMinHeight(double width) {
  String text = getText();
  Node graphic = getGraphic();
  if ((text == null || text.isEmpty()) && (graphic != null)) {
    return graphic.minHeight(width);
  }
  return 100;
}

代码示例来源:origin: no.tornado/tornadofx-controls

protected double computeMinHeight(double width, double topInset, double rightInset, double bottomInset, double leftInset) {
  if (getSkinnable().getOrientation() == Orientation.VERTICAL)
    return acc(n -> n.minHeight(width));
  else
    return biggest(n -> n.minHeight(width));
}

代码示例来源:origin: no.tornado/tornadofx-controls

protected double computeMinHeight(double width, double topInset, double rightInset, double bottomInset, double leftInset) {
  if (iconPosition().isHorizontal())
    return acc(n -> n.minHeight(width));
  else
    return biggest(n -> n.minHeight(width));
}

代码示例来源:origin: org.jfxtras/jfxtras-common

private double calculateNodeHeight(Node n, MinPrefMax size) {
  if (size == MinPrefMax.MIN) {
    return n.minHeight(-1);
  }
  if (size == MinPrefMax.MAX) {
    return n.maxHeight(-1);
  }
  return n.prefHeight(-1);
}

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

if (!firstManagedChild) {
  minY = Math.min(minY, y);
  maxY = Math.max(maxY, y + node.minHeight(width));
} else {
  minY = y;
  maxY = y + node.minHeight(width);
  firstManagedChild = false;

代码示例来源:origin: it.unibo.alchemist/alchemist-projectview

};
final Consumer<Node> _function_5 = (Node it) -> {
 it.minHeight(Region.USE_PREF_SIZE);
};
IterableExtensions.<Node>filter(alert.getDialogPane().getChildren(), _function_4).forEach(_function_5);

代码示例来源:origin: at.bestsolution.efxclipse.rt/org.eclipse.fx.ui.panes

child.resizeRelocate(x, y, childWidth, Math.max(height,child.minHeight(childWidth)));
x += childWidth + this.spacing.get();
    childHeight += (extra + 1) / 2;
childHeight = Math.max(childHeight, child.minHeight(width));
child.resizeRelocate(x, y, Math.max(width,child.minWidth(childHeight)), childHeight);
y += childHeight + this.spacing.get();

代码示例来源:origin: org.eclipse.fx/org.eclipse.fx.ui.panes

child.resizeRelocate(x, y, childWidth, Math.max(height,child.minHeight(childWidth)));
x += childWidth + this.spacing.get();
    childHeight += (extra + 1) / 2;
childHeight = Math.max(childHeight, child.minHeight(width));
child.resizeRelocate(x, y, Math.max(width,child.minWidth(childHeight)), childHeight);
y += childHeight + this.spacing.get();

相关文章

微信公众号

最新文章

更多

Node类方法