热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

javafx.scene.layout.StackPane.layoutChildren()方法的使用及代码示例

本文整理了Java中javafx.scene.layout.StackPane.layoutChildren()方法的一些代码示例,展示了StackPane

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

StackPane.layoutChildren介绍

暂无

代码示例

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

@Override
protected void layoutChildren() {
super.layoutChildren();
clip.resizeRelocate(0,0,getWidth(), getHeight());
}
}

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

@Override
public void layoutChildren() {
super.layoutChildren();
if (dialog.getMinWidth() > 0 && dialog.getMinHeight() > 0) {
return;
}
double minWidth = Math.max(0, computeMinWidth(getHeight()) + (dialog.getWidth() - customScene.getWidth()));
double minHeight = Math.max(0, computeMinHeight(getWidth()) + (dialog.getHeight() - customScene.getHeight()));
dialog.setMinWidth(minWidth);
dialog.setMinHeight(minHeight);
}
}

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

@Override
protected void layoutChildren() {
super.layoutChildren();
}

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

@Override
protected void layoutChildren() {

setupLayout();

// continue layout
super.layoutChildren();
}

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

@Override
protected void layoutChildren() {
super.layoutChildren();
clip.resizeRelocate(0,0,getWidth(), getHeight());
}
}

代码示例来源:origin: com.guigarage/animations

@Override
protected void layoutChildren() {
super.layoutChildren();
for(Node child : getChildren()) {
if(!child.equals(playIcon) && !child.equals(pauseIcon)) {
child.relocate(0, 0);
child.resize(getWidth(), getHeight());
}
}
}
}

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

@Override
public void layoutChildren() {
super.layoutChildren();
if (dialog.getMinWidth() > 0 && dialog.getMinHeight() > 0) {
return;
}
double minWidth = Math.max(0, computeMinWidth(getHeight()) + (dialog.getWidth() - customScene.getWidth()));
double minHeight = Math.max(0, computeMinHeight(getWidth()) + (dialog.getHeight() - customScene.getHeight()));
dialog.setMinWidth(minWidth);
dialog.setMinHeight(minHeight);
}
}

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

@Override protected void layoutChildren() {
super.layoutChildren();

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

@Override
protected void layoutChildren() {
super.layoutChildren();
if (debugAnimation) {
this.debugBox.resizeRelocate(0, 0, 40, getHeight());
this.debugUpdateAnnotations.resize(getHeight(), getHeight());
this.debugUpdateText.resize(getHeight(), getHeight());
this.debugUpdateSelection.resize(getHeight(), getHeight());
this.debugUpdateCaret.resize(getHeight(), getHeight());
// debugUpdateAnnotations.resizeRelocate(0, 0, getWidth(), getHeight());
// debugUpdateText.resizeRelocate(0, 0, getWidth(), getHeight());
// debugUpdateSelection.resizeRelocate(0, 0, getWidth(), getHeight());
// debugUpdateCaret.resizeRelocate(0, 0, getWidth(), getHeight());
}
}

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

@Override
protected void layoutChildren() {
super.layoutChildren();
if (this.resizeLeft != null) {
this.resizeLeft.resizeRelocate(0, this.getResizeHandleSize(), this.getResizeHandleSize(), getHeight() - 2 * this.getResizeHandleSize());

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

@Override
protected void layoutChildren() {
super.layoutChildren();
if (this.resizeLeft != null) {
this.resizeLeft.resizeRelocate(0, this.getResizeHandleSize(), this.getResizeHandleSize(), getHeight() - 2 * this.getResizeHandleSize());

推荐阅读
author-avatar
2yuheng
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有